-
-
Notifications
You must be signed in to change notification settings - Fork 5
CheckDMXCollision
Anthony Headley edited this page Apr 19, 2020
·
1 revision
⚠ Need more information ⚠
Name | Description | Optional |
---|---|---|
dmxMode : object | Object desctibing the dmxMode to test against, Need information where to grab this info | |
address : string | Dmx address, "u.a"? | |
count : int | The number of fixture to check against, (assume 1 if nil?) | ✔ |
break : int | Dmx Break count | ✔ (if count) |
true : bool = No collision false : bool = Collision with current patch ...
local dmxMode = -- TBD GET THE DMX MODE
local x = CheckDMXCollision(dmxMode, "10.1", 5)
if x then
Echo("No Collision")
else
Echo("Collision")
end