adityagameprogrmer
02-22-2010, 12:06 AM
Hi,
how do i toggle Actor Visibility using Kismet
i have a trigger in the level and im able to trigger animations
but i have a model in level whose visibility i want to toggle.
where can i find the visibility modifier ???
Edit
Through UnrealScript You can Achieve it like this
/**
* Changes the value of bHidden.
*
* @param bNewHidden - The value to assign to bHidden.
*/
native final function SetHidden(bool bNewHidden);
also a very useful set of Actor Native Functions are available at
http://wiki.beyondunreal.com/UE3:Act...ions_%28UDK%29
how do i toggle Actor Visibility using Kismet
i have a trigger in the level and im able to trigger animations
but i have a model in level whose visibility i want to toggle.
where can i find the visibility modifier ???
Edit
Through UnrealScript You can Achieve it like this
/**
* Changes the value of bHidden.
*
* @param bNewHidden - The value to assign to bHidden.
*/
native final function SetHidden(bool bNewHidden);
also a very useful set of Actor Native Functions are available at
http://wiki.beyondunreal.com/UE3:Act...ions_%28UDK%29