Intersecting_Circles/intersecting-circles-modifiers/modifiers/move/move.modifier.lx

12 lines
357 B
Text
Raw Normal View History

2021-12-14 11:52:41 +00:00
modifier = {
script = "modifiers/move/move"
description = "Constant movement."
field = "move"
display = "Move" //the display in the editor
class = "Move" //The code generated name for the modifier API
block = { //The data for the modifier
fields = [
{ name="velocity" type="float2" default=[0, 0] }
]
}
}