A Five Nights at Freddy's framework made for the Godot game engine.
A Godot TOML parser for Godot 3.xUsage```var toml = TOMLParser.new() # Define the parser in your scriptvar file = toml.parse("res://file.toml") # Load your TOML file from a specified path# After that, it behaves exactly like a dictionaryprint(file["variable"])```Current Issues -Octal and binary numbers aren't supported -Complex Date-time (eg. 1979-05-27T00:32:00.999999-07:00) isn't valid -Multi-lined strings can't start on a new line -Multi-lined arrays aren't supported
A TrackballCamera that responds to input from mouse, keyboard, joystick and touch, in order to rotate around its parent node while continuously facing it.- stays around its parent node, even if it moves- no gimbal lock (quaternions ♥)- camera inertia for a smoother experience- the parent node does not have to be centered in the camera's view- a bunch of parameters to configure everything as you want it- won't work on godot 3
Plugin that makes version management for your projects easier and adds the ability to check for newer published versions on iOS/Android