what is mean "VerseRuntimeErrors : Error: Unknown error in GetTransform()" ??

Hello, I have a question. I’m working on an animation, and the jumping motion says the same thing as the title above, and the object stops. I don’t think it’s an animation problem, and can you tell me what the content of that error is and why it happens??

9 Likes

I’m facing this issue just right now in a device that was working fine. How did you solve it?

Figure this out?

edit: in case anyone else gets here in the future. The solution is likely very simple. You forgot to reference your prop in your device.

For me this error was showing up when I had a @editable property unassigned, like:

@editable
MyTrigger : trigger_device = trigger_device{}

But at editor was unset (None by default). When I call MyTrigger.MoveTo(Coord, Rot) it causes that error. For instance, I set all my @editable properties to optional in order to prevent misconfiguration by other team members.

@editable
MyTrigger : ?trigger_device = false
...
if (Trigger := MyTrigger?):
  Trigger.MoveTo(Coord, Rot)