fader feedback nil reference fix
This commit is contained in:
parent
7ca71ac9ea
commit
f0a00a359f
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ local function main()
|
|||
|
||||
-- check if we're an active sequence
|
||||
-- if it is, and it's active, send value 2
|
||||
if obj.type == "Sequence" then
|
||||
if obj ~= nil and obj.type == "Sequence" then
|
||||
if obj:HasActivePlayback() then
|
||||
endValue = 2
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue