Skip to content

Commit

Permalink
Removed debug prints, cleaned up test project
Browse files Browse the repository at this point in the history
  • Loading branch information
HLCaptain committed Oct 7, 2023
1 parent d6b9ca9 commit df576ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Godot 4+ specific ignores
.godot/
.vscode/
4 changes: 2 additions & 2 deletions addons/proto_shape/plugin.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[plugin]

name="ProtoShape"
description="Simple, dynamic shapes for prototyping, blocking out maps, based on CSG."
description="ProtoShape is a Godot plugin that adds a library of dynamic shapes like ramps and stairs to quickly block out your maps and iterate on your ideas."
author="Illyan"
version="1.0"
version="1.0.2"
script="proto_shape.gd"
3 changes: 0 additions & 3 deletions addons/proto_shape/proto_gizmo.gd
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ func _redraw(gizmo):
gizmo.add_handles(handles, get_material("handles", gizmo), [depth_gizmo_id, width_gizmo_id])

func _set_handle(gizmo, handle_id, secondary, camera, screen_pos):
print_debug("handle_id = " + str(handle_id))
print_debug("width_gizmo_id = " + str(width_gizmo_id))
print_debug("depth_gizmo_id = " + str(depth_gizmo_id))
match handle_id:
depth_gizmo_id:
_set_depth_handle(gizmo, camera, screen_pos)
Expand Down
6 changes: 3 additions & 3 deletions project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ config_version=5
[application]

config/name="Test"
run/main_scene="res://dynamic_shapes/linear_stairs.tscn"
run/main_scene="res://addons/proto_shape/scenes/linear_stairs.tscn"
config/features=PackedStringArray("4.1", "Forward Plus")
config/icon="res://icon.svg"
config/icon="res://addons/proto_shape/icon/proto-shape-icon.png"

[editor_plugins]

enabled=PackedStringArray("res://addons/plugin_refresher/plugin.cfg", "res://addons/proto_shape/plugin.cfg")
enabled=PackedStringArray("res://addons/proto_shape/plugin.cfg")

[rendering]

Expand Down

0 comments on commit df576ce

Please sign in to comment.