forked from team-sg/hero-mark-2
statecharts ehehehehehe
This commit is contained in:
parent
4d59717b88
commit
6eff1601a9
23 changed files with 895 additions and 2 deletions
|
@ -9,13 +9,49 @@
|
|||
config_version=4
|
||||
|
||||
_global_script_classes=[ {
|
||||
"base": "State",
|
||||
"class": "AtomicState",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/atomic_state.gd"
|
||||
}, {
|
||||
"base": "State",
|
||||
"class": "CompoundState",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/compound_state.gd"
|
||||
}, {
|
||||
"base": "Resource",
|
||||
"class": "LevelEntry",
|
||||
"language": "GDScript",
|
||||
"path": "res://scripts/level_entry.gd"
|
||||
}, {
|
||||
"base": "State",
|
||||
"class": "ParallelState",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/parallel_state.gd"
|
||||
}, {
|
||||
"base": "Node",
|
||||
"class": "State",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/state.gd"
|
||||
}, {
|
||||
"base": "Node",
|
||||
"class": "StateChart",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/state_chart.gd"
|
||||
}, {
|
||||
"base": "Node",
|
||||
"class": "Transition",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_state_charts/transition.gd"
|
||||
} ]
|
||||
_global_script_class_icons={
|
||||
"LevelEntry": ""
|
||||
"AtomicState": "res://addons/godot_state_charts/atomic_state.svg",
|
||||
"CompoundState": "res://addons/godot_state_charts/compound_state.svg",
|
||||
"LevelEntry": "",
|
||||
"ParallelState": "res://addons/godot_state_charts/parallel_state.svg",
|
||||
"State": "",
|
||||
"StateChart": "res://addons/godot_state_charts/state_chart.svg",
|
||||
"Transition": "res://addons/godot_state_charts/transition.svg"
|
||||
}
|
||||
|
||||
[application]
|
||||
|
@ -49,7 +85,7 @@ window/handheld/orientation="sensor_landscape"
|
|||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PoolStringArray( )
|
||||
enabled=PoolStringArray( "res://addons/godot_state_charts/plugin.cfg" )
|
||||
|
||||
[global]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue