Does anyone know to to pass in ?Rotation:?rotation = ...

Is this a real argument you can pass in? I’ve tried ?Rotation:=option{CustomRotation}, and every other combination I could think of. Is it even possible to pass this argument for the SpawnAt() function in the creature_spawner_device. I’m starting to think its just bugged.

Your questions are answered here:

1 Like
    SpawnFiendT1()<suspends>:void=
        Transform:=FiendCreatureSpawnerT1.GetTransform()
        Position:=Transform.Translation
        BaseRotation:?rotation= option{MakeRotationFromYawPitchRollDegrees(0.0,0.0,0.0)}
        FiendCreatureSpawnerT1.SpawnAt(Position,?Rotation:=BaseRotation)

I copied it exactly and I am still getting the error

This function parameter expects a value of type tuple(vector3,?Rotation:?rotation = …), but this argument is an incompatible value of type tuple(vector3,?Rotation:rotation).

Can you confirm that you’re using vector3 and rotation from /Verse.org/SpatialMath? In other words, do you have the following using line somewhere in your file?
using { /Verse.org/SpatialMath }