KFM "incorrect parameter type" when using KFM_DATA
complete
nya Resident
With any compiler (including Mono & LSO2)
// lsl
llSetKeyframedMotion([<0, 0, 1>, ZERO_ROTATION, 0.5], []); // works
llSetKeyframedMotion([<0, 0, 1>, 0.5], [KFM_DATA, KFM_TRANSLATION]); // fails
-- lua
ll.SetKeyframedMotion({ vector.create(0, 0, 1), ZERO_ROTATION, 0.5 }, {}); -- works
ll.SetKeyframedMotion({ vector.create(0, 0, 1), 0.5 }, { KFM_DATA, KFM_TRANSLATION }); -- fails
Script error given
Syntax error in llSetKeyframedMotion() call. Incorrect parameter type.
Log In
H
Harold Linden
complete
H
Harold Linden
We rolled out some changes that should fix this, does this work for you now?
nya Resident
Harold Linden seems to have fixed it, thanks!
WolfGang Senizen
Same for
KFM_MODE