(EE editor)

Hi,

I would like to move an item created via ItemCreateAtTrigger around via ItemMoveToTrigger() (or equivalent). I can't find a way to do that though:

  • • There is no itemScript equivalent for the charScript's CharacterMoveTo call
  • • If I call ItemEvent(__Me,"someEventString") for such an item in its itemScript (I've verified that the itemScript gets run on creation), that does not seem to generate an Osiris event (ItemEvent(_item, _Event) does not get triggered in the story editor, and I couldn't see anything in osirislog.txt either)
  • • I can catch the ItemCreatedAtTrigger event, but that returns an ItemHandle rather than an Item, and there does not appear to be an inverse of ItemGetHandle, and the Osiris call ItemMoveToTrigger only works with an Item and not with an ItemHandle.

The only thing I can think of right now is to use ItemHandleToTransform (haven't tried it yet), but that seems to be a bit overkill (and it doesn't take a speed parameter, which I'd like to specify).

Any ideas?

Thanks.