PDA

View Full Version : How do you get your custom sequence action to show up in UIScene Kismet?



Rishara
02-27-2010, 11:58 PM
Hi,

I have created a really simple main menu UI Scene. When I click on the "New Game" button, I want to trigger my custom load level sequence action. My class extends SequenceAction and shows up in the main level Kismet editor just fine. However, it does not show up in my UI Scene Kismet editor.

Do you know what I have to do to get it to show up there??

Thanks for any help!

InhexSTER
02-28-2010, 12:24 AM
If you want just loading level functionality you could do New Action-Misc-Console Command and command in console would be "open YourLevel" this way no unrealscript required, also note that open command doesn't work in editor only in game

Wormbo
02-28-2010, 03:32 AM
Make sure your custom Kismet nodes are actually marked as being allowed for UIScenes. (Look it up in the SequenceOp or SequenceObject class.)

Rishara
02-28-2010, 01:21 PM
Thanks Wormbo, that's what I needed to know. It's working fine now.