Lots of stuff I forgot to commit because Holidays

- D&D dice engine (see README)
- Markdown support
- Phantom camera
This commit is contained in:
Tony Bark 2023-12-24 20:39:57 -05:00
parent 9589acd877
commit 2b41f84b05
125 changed files with 13170 additions and 23 deletions

View file

@ -0,0 +1,13 @@
class_name PhantomCameraTween
extends Resource
const Constants = preload("res://addons/phantom_camera/scripts/phantom_camera/phantom_camera_constants.gd")
## The time it takes to tween to this property
@export var duration: float = 1
## The transition bezier type for the tween
@export var transition: Constants.TweenTransitions = Constants.TweenTransitions.LINEAR
## The ease type for the tween
@export var ease: Constants.TweenEases = Constants.TweenEases.EASE_IN_OUT