aboutsummaryrefslogtreecommitdiff
path: root/src/scenes/speck_editor.lua
diff options
context:
space:
mode:
authorne_mene <[email protected]>2026-04-02 12:24:51 +0200
committerne_mene <[email protected]>2026-04-02 12:24:51 +0200
commit1eeef68f5b395f2de2afbde2dba6cae650120668 (patch)
tree95af232e4d36956dbb29dfc4089d64084edfeb89 /src/scenes/speck_editor.lua
parentc54b9912d0e8cabf1e92c1d5353010736e47364f (diff)
specks: initial velocity variation
Diffstat (limited to 'src/scenes/speck_editor.lua')
-rw-r--r--src/scenes/speck_editor.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/scenes/speck_editor.lua b/src/scenes/speck_editor.lua
index bdba449..c9a47e6 100644
--- a/src/scenes/speck_editor.lua
+++ b/src/scenes/speck_editor.lua
@@ -17,8 +17,10 @@ local PROPERTY_CUSTOM = {
forcex = {min = -2048, max = 2048},
forcey = {min = -2048, max = 2048},
damping = {min = 0, max = 128},
- initial_velx = {min = 0, max = 2048},
- initial_vely = {min = 0, max = 2048},
+ initial_velx_max = {min = 0, max = 2048},
+ initial_velx_min = {min = 0, max = 2048},
+ initial_vely_max = {min = 0, max = 2048},
+ initial_vely_min = {min = 0, max = 2048},
spread = {min = 0, max = 360},
lifetime_min = {min = 0, max = 32},
lifetime_max = {min = 0, max = 32},