diff options
Diffstat (limited to 'demos/plugins')
-rw-r--r-- | demos/plugins/custom_dock/custom_dock.scn | bin | 1494 -> 0 bytes | |||
-rw-r--r-- | demos/plugins/custom_dock/dock_plugin.gd | 23 | ||||
-rw-r--r-- | demos/plugins/custom_dock/plugin.cfg | 14 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/import_plugin.gd | 81 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/material_dialog.gd | 67 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/material_dialog.tscn | 111 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/material_import.gd | 22 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/plugin.cfg | 14 | ||||
-rw-r--r-- | demos/plugins/custom_import_plugin/test.mtxt | 1 | ||||
-rw-r--r-- | demos/plugins/custom_node/heart.gd | 12 | ||||
-rw-r--r-- | demos/plugins/custom_node/heart.png | bin | 12584 -> 0 bytes | |||
-rw-r--r-- | demos/plugins/custom_node/heart_icon.png | bin | 809 -> 0 bytes | |||
-rw-r--r-- | demos/plugins/custom_node/heart_plugin.gd | 18 | ||||
-rw-r--r-- | demos/plugins/custom_node/plugin.cfg | 14 | ||||
-rw-r--r-- | demos/plugins/readme.txt | 13 |
15 files changed, 0 insertions, 390 deletions
diff --git a/demos/plugins/custom_dock/custom_dock.scn b/demos/plugins/custom_dock/custom_dock.scn Binary files differdeleted file mode 100644 index 0e32ece264..0000000000 --- a/demos/plugins/custom_dock/custom_dock.scn +++ /dev/null diff --git a/demos/plugins/custom_dock/dock_plugin.gd b/demos/plugins/custom_dock/dock_plugin.gd deleted file mode 100644 index ce8a3bcd09..0000000000 --- a/demos/plugins/custom_dock/dock_plugin.gd +++ /dev/null @@ -1,23 +0,0 @@ -tool -extends EditorPlugin - -var dock = null - -func _enter_tree(): - # When this plugin node enters tree, add the custom type - - dock = preload("res://addons/custom_dock/custom_dock.scn").instance() - - add_control_to_dock( DOCK_SLOT_LEFT_UL, dock ) - -func _exit_tree(): - - # Remove from docks (must be called so layout is updated and saved) - remove_control_from_docks(dock) - # Remove the node - dock.free() - - - - -
\ No newline at end of file diff --git a/demos/plugins/custom_dock/plugin.cfg b/demos/plugins/custom_dock/plugin.cfg deleted file mode 100644 index e295384c25..0000000000 --- a/demos/plugins/custom_dock/plugin.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[plugin] - -name="Custom Dock" -description="Adds a new Customizable Dock" -author="Juan Linietsky" -version="1.0" -script="dock_plugin.gd" - - - - - - - diff --git a/demos/plugins/custom_import_plugin/import_plugin.gd b/demos/plugins/custom_import_plugin/import_plugin.gd deleted file mode 100644 index 2cf8a0302f..0000000000 --- a/demos/plugins/custom_import_plugin/import_plugin.gd +++ /dev/null @@ -1,81 +0,0 @@ -tool - -extends EditorImportPlugin - - -# Simple plugin that imports a text file with extension .mtxt -# which contains 3 integers in format R,G,B (0-255) -# (see example .mtxt in this folder) -# Imported file is converted to a material - -var dialog = null - -func get_name(): - return "silly_material" - -func get_visible_name(): - return "Silly Material" - -func import_dialog(path): - var md = null - if (path!=""): - md = ResourceLoader.load_import_metadata(path) - dialog.configure(self,path,md) - dialog.popup_centered() - -func import(path,metadata): - - assert(metadata.get_source_count() == 1) - - var source = metadata.get_source_path(0) - var use_red_anyway = metadata.get_option("use_red_anyway") - - var f = File.new() - var err = f.open(source,File.READ) - if (err!=OK): - return ERR_CANT_OPEN - - var l = f.get_line() - - f.close() - - var channels = l.split(",") - if (channels.size()!=3): - return ERR_PARSE_ERROR - - var color = Color8(int(channels[0]),int(channels[1]),int(channels[2])) - - var material - - if (ResourceLoader.has(path)): - # Material is in use, update it - material = ResourceLoader.load(path) - else: - # Material not in use, create - material = FixedMaterial.new() - - if (use_red_anyway): - color=Color8(255,0,0) - - material.set_parameter(FixedMaterial.PARAM_DIFFUSE,color) - - # Make sure import metadata links to this plugin - - metadata.set_editor("silly_material") - - # Update the import metadata - - material.set_import_metadata(metadata) - - - # Save - err = ResourceSaver.save(path,material) - - return err - - -func config(base_control): - - dialog = preload("res://addons/custom_import_plugin/material_dialog.tscn").instance() - base_control.add_child(dialog) - diff --git a/demos/plugins/custom_import_plugin/material_dialog.gd b/demos/plugins/custom_import_plugin/material_dialog.gd deleted file mode 100644 index 1022743254..0000000000 --- a/demos/plugins/custom_import_plugin/material_dialog.gd +++ /dev/null @@ -1,67 +0,0 @@ -tool -extends ConfirmationDialog - -var src_fs -var dst_fs -var import_plugin - -func configure(p_import_plugin,path,metadata): - import_plugin=p_import_plugin - if (metadata): - # metadata from previous import exists, fill in fields - assert( metadata.get_source_count() > 0 ) - # Always expand the source paths - var src_path = import_plugin.expand_source_path( metadata.get_source_path(0) ) - get_node("src_file").set_text(src_path) - get_node("dst_file").set_text(path) - # Fill in from metadata options - get_node("use_red_anyway").set_pressed( metadata.get_option("use_red_anyway") ) - - -func _ready(): - - src_fs = FileDialog.new() - src_fs.set_mode(FileDialog.MODE_OPEN_FILE) - src_fs.set_access(FileDialog.ACCESS_FILESYSTEM) #access all filesystem, not only res:// - src_fs.add_filter("*.mtxt") - src_fs.connect("file_selected",self,"_on_src_selected") - - add_child(src_fs) - - dst_fs = EditorFileDialog.new() - dst_fs.set_mode(EditorFileDialog.MODE_SAVE_FILE) - dst_fs.add_filter("*.mtl") # Use binary extension always, text can't save metadata - dst_fs.connect("file_selected",self,"_on_dst_selected") - - add_child(dst_fs) - - set_hide_on_ok(true) - get_ok().set_text("Import!") - - -func _on_src_browse_pressed(): - src_fs.popup_centered_ratio() - -func _on_dst_browse_pressed(): - dst_fs.popup_centered_ratio() - -func _on_src_selected(path): - get_node("src_file").set_text(path) - -func _on_dst_selected(path): - get_node("dst_file").set_text(path) - -func _on_MaterialImport_confirmed(): - # Create an import metadata - var imd = ResourceImportMetadata.new() - # Add the source files, always validate the source path - imd.add_source( import_plugin.validate_source_path( get_node("src_file").get_text() )) - # Add the options - imd.set_option( "use_red_anyway", get_node("use_red_anyway").is_pressed() ) - # Perform regular import - var err = import_plugin.import( get_node("dst_file").get_text(), imd ) - # Warn if error - if (err!=OK): - get_node("error").set_text("Error Importing!") - get_node("error").popup_centered_minsize() - diff --git a/demos/plugins/custom_import_plugin/material_dialog.tscn b/demos/plugins/custom_import_plugin/material_dialog.tscn deleted file mode 100644 index 9ad6f492fd..0000000000 --- a/demos/plugins/custom_import_plugin/material_dialog.tscn +++ /dev/null @@ -1,111 +0,0 @@ -[gd_scene load_steps=2 format=1] - -[ext_resource path="res://addons/custom_import_plugin/material_dialog.gd" type="Script" id=1] - -[node name="MaterialImport" type="ConfirmationDialog"] - -margin/right = 276.0 -margin/bottom = 154.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -popup/exclusive = false -window/title = "Silly Material Import" -dialog/hide_on_ok = true -script/script = ExtResource( 1 ) -__meta__ = { "__editor_plugin_screen__":"Script" } - -[node name="src_file" type="LineEdit" parent="."] - -margin/left = 19.0 -margin/top = 6.0 -margin/right = 190.0 -margin/bottom = 29.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -text = "" -max_length = 0 -editable = true -secret = false - -[node name="src_browse" type="Button" parent="."] - -margin/left = 195.0 -margin/top = 7.0 -margin/right = 249.0 -margin/bottom = 29.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -toggle_mode = false -text = "browse" -flat = false - -[node name="dst_browse" type="Button" parent="."] - -margin/left = 195.0 -margin/top = 47.0 -margin/right = 249.0 -margin/bottom = 69.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -toggle_mode = false -text = "browse" -flat = false - -[node name="dst_file" type="LineEdit" parent="."] - -margin/left = 19.0 -margin/top = 46.0 -margin/right = 190.0 -margin/bottom = 69.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -text = "" -max_length = 0 -editable = true -secret = false - -[node name="use_red_anyway" type="CheckBox" parent="."] - -margin/left = 20.0 -margin/top = 84.0 -margin/right = 144.0 -margin/bottom = 106.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -toggle_mode = true -text = "Use Red Anyway" -flat = false -align = 0 - -[node name="error" type="AcceptDialog" parent="."] - -visibility/visible = false -margin/right = 40.0 -margin/bottom = 40.0 -focus/ignore_mouse = false -focus/stop_mouse = true -size_flags/horizontal = 2 -size_flags/vertical = 2 -popup/exclusive = false -window/title = "Alert!" -dialog/hide_on_ok = true - -[connection signal="confirmed" from="." to="." method="_on_MaterialImport_confirmed"] - -[connection signal="pressed" from="src_browse" to="." method="_on_src_browse_pressed"] - -[connection signal="pressed" from="dst_browse" to="." method="_on_dst_browse_pressed"] - - diff --git a/demos/plugins/custom_import_plugin/material_import.gd b/demos/plugins/custom_import_plugin/material_import.gd deleted file mode 100644 index f9859251af..0000000000 --- a/demos/plugins/custom_import_plugin/material_import.gd +++ /dev/null @@ -1,22 +0,0 @@ -tool -extends EditorPlugin - -var import_plugin - -func _enter_tree(): - - import_plugin = preload("res://addons/custom_import_plugin/import_plugin.gd").new() - - # pass the GUI base control, so the dialog has a parent node - import_plugin.config( get_base_control() ) - - add_import_plugin( import_plugin) - -func _exit_tree(): - - remove_import_plugin( import_plugin ) - - - - -
\ No newline at end of file diff --git a/demos/plugins/custom_import_plugin/plugin.cfg b/demos/plugins/custom_import_plugin/plugin.cfg deleted file mode 100644 index a002ad680d..0000000000 --- a/demos/plugins/custom_import_plugin/plugin.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[plugin] - -name="Silly Material Importer" -description="Imports a 3D Material from an external text file" -author="Juan Linietsky" -version="1.0" -script="material_import.gd" - - - - - - - diff --git a/demos/plugins/custom_import_plugin/test.mtxt b/demos/plugins/custom_import_plugin/test.mtxt deleted file mode 100644 index 546ea2af20..0000000000 --- a/demos/plugins/custom_import_plugin/test.mtxt +++ /dev/null @@ -1 +0,0 @@ -0,0,255 diff --git a/demos/plugins/custom_node/heart.gd b/demos/plugins/custom_node/heart.gd deleted file mode 100644 index d53c92d800..0000000000 --- a/demos/plugins/custom_node/heart.gd +++ /dev/null @@ -1,12 +0,0 @@ -tool -extends Node2D - - -var heart = preload("res://addons/custom_node/heart.png") - -func _draw(): - draw_texture(heart,-heart.get_size()/2) - -func _get_item_rect(): - #override - return Rect2(-heart.get_size()/2,heart.get_size()) diff --git a/demos/plugins/custom_node/heart.png b/demos/plugins/custom_node/heart.png Binary files differdeleted file mode 100644 index 1dfd14a456..0000000000 --- a/demos/plugins/custom_node/heart.png +++ /dev/null diff --git a/demos/plugins/custom_node/heart_icon.png b/demos/plugins/custom_node/heart_icon.png Binary files differdeleted file mode 100644 index 2eb819aa24..0000000000 --- a/demos/plugins/custom_node/heart_icon.png +++ /dev/null diff --git a/demos/plugins/custom_node/heart_plugin.gd b/demos/plugins/custom_node/heart_plugin.gd deleted file mode 100644 index 01a6177c9b..0000000000 --- a/demos/plugins/custom_node/heart_plugin.gd +++ /dev/null @@ -1,18 +0,0 @@ -tool -extends EditorPlugin - - -func _enter_tree(): - # When this plugin node enters tree, add the custom type - - add_custom_type("Heart","Node2D",preload("res://addons/custom_node/heart.gd"),preload("res://addons/custom_node/heart_icon.png")) - -func _exit_tree(): - # When the plugin node exits the tree, remove the custom type - - remove_custom_type("Heart") - - - - -
\ No newline at end of file diff --git a/demos/plugins/custom_node/plugin.cfg b/demos/plugins/custom_node/plugin.cfg deleted file mode 100644 index ebb4b56499..0000000000 --- a/demos/plugins/custom_node/plugin.cfg +++ /dev/null @@ -1,14 +0,0 @@ -[plugin] - -name="Heart" -description="Adds a new Heart node in 2D" -author="Juan Linietsky" -version="1.0" -script="heart_plugin.gd" - - - - - - - diff --git a/demos/plugins/readme.txt b/demos/plugins/readme.txt deleted file mode 100644 index 963850dcbb..0000000000 --- a/demos/plugins/readme.txt +++ /dev/null @@ -1,13 +0,0 @@ - -To install these, copy each of these folders to a folder: - -addons/ - -inside your projects, example: - -addons/custom_node - -To distribute and install from UI, make a zip that contains the folder, -example: - -zip -r custom_node.zip custom_node/*
\ No newline at end of file |