Files
EGJ25/addons/guide/modifiers/guide_modifier.gd
minimata 9a79715e47
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Successful in 3m16s
feat: made sure the aspect ration fit a pixel art game and added useful addons
2025-06-27 15:19:12 +02:00

24 lines
584 B
GDScript

@tool
@icon("res://addons/guide/modifiers/guide_modifier.svg")
class_name GUIDEModifier
extends Resource
## Called when the modifier is started to be used by GUIDE. Can be used to perform
## initializations.
func _begin_usage() -> void :
pass
## Called, when the modifier is no longer used by GUIDE. Can be used to perform
## cleanup.
func _end_usage() -> void:
pass
func _modify_input(input:Vector3, delta:float, value_type:GUIDEAction.GUIDEActionValueType) -> Vector3:
return input
func _editor_name() -> String:
return ""
func _editor_description() -> String:
return ""