refactor: update RaycastInstance to FlareInstance

This commit is contained in:
ByteAtATime 2025-07-26 10:50:22 -07:00
parent 457d11a981
commit 2890b7e464

View file

@ -118,9 +118,9 @@ rl.on('line', (line) => {
return;
}
const raycastInstance = instance as FlareInstance;
const flareInstance = instance as FlareInstance;
const props = raycastInstance._unserializedProps;
const props = flareInstance._unserializedProps;
const handler = props?.[handlerName];
if (typeof handler === 'function') {