Skip to content

Instantly share code, notes, and snippets.

@nathanielanozie
nathanielanozie / addControlsToBendyBones.py
Created June 15, 2024 19:30
bendy bone animator control class in blender 2.79
#has some tools for adding animator controls to bendy bones
#
#tested in blender 2.79
#please modify/use at your own risk
import bpy
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG) #without this info logs wouldnt show in console
@nathanielanozie
nathanielanozie / core.cpp
Last active June 26, 2024 03:09
c++ opengl arithmetic text game
#include <iostream>
#include <random>
#include <algorithm>
#include <vector>
#include <cstdio>
#include <ctime>
#include <sstream>