Inital Commit of C# Code
This commit is contained in:
commit
c5058f8b84
104 changed files with 2588 additions and 0 deletions
17
addons/gde_gozen/plugin.gd
Normal file
17
addons/gde_gozen/plugin.gd
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@tool
|
||||
class_name GoZenServer
|
||||
extends EditorPlugin
|
||||
## GoZenServer is only used for adding the node to the node list.
|
||||
|
||||
|
||||
|
||||
func _enter_tree() -> void:
|
||||
add_custom_type(
|
||||
"VideoPlayback", "Control",
|
||||
load("res://addons/gde_gozen/video_playback.gd"),
|
||||
load("res://addons/gde_gozen/icon.webp"))
|
||||
|
||||
|
||||
func _exit_tree() -> void:
|
||||
remove_custom_type("VideoPlayback")
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue