diff options
author | Raffaele Picca <picster@pixelgod.net> | 2021-02-18 20:31:25 +0100 |
---|---|---|
committer | Raffaele Picca <picster@pixelgod.net> | 2021-02-18 20:31:25 +0100 |
commit | 6406cd4708aeec04c23ffdf098e3319a404e7ed9 (patch) | |
tree | 8faedb9b3f733cc6ee901407e3ac4d4ed8ae6012 /src/addons/rmsmartshape/strings.gd | |
parent | c9b3470e43aed98e2a93a332cfc92c3b9ca05163 (diff) |
Initial Commit
Diffstat (limited to 'src/addons/rmsmartshape/strings.gd')
-rw-r--r-- | src/addons/rmsmartshape/strings.gd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/addons/rmsmartshape/strings.gd b/src/addons/rmsmartshape/strings.gd new file mode 100644 index 0000000..d0ac60c --- /dev/null +++ b/src/addons/rmsmartshape/strings.gd @@ -0,0 +1,11 @@ +tool +extends Resource +class_name SS2D_Strings + +const EN_TOOLTIP_CREATE_VERT = "LMB: Add vertex\nShift+LMB: Create Bezier curve using Control Points\nControl+LMB: Set Pivot Point\nLMB+Drag: Move Point\nLMB: Click on edge to split\nRMB: Delete Point" +const EN_TOOLTIP_EDIT_VERT = "Shift+LMB: Create Bezier curve using Control Points\nAlt+LMB: Add vertex\nControl+LMB: Set Pivot Point\nLMB+Drag: Move Point\nLMB: Click on edge to split\nRMB: Delete Point" +const EN_TOOLTIP_EDIT_EDGE = "Select each edge's properties" +const EN_TOOLTIP_PIVOT = "Sets the origin of the shape" +const EN_TOOLTIP_COLLISION = "Add static body parent and collision polygon sibling\nUse this to auto generate collision Nodes" +const EN_TOOLTIP_SNAP = "Snapping Options" +const EN_TOOLTIP_IMPORT = "Convert old Smartshape to new Smartshape" |