[DEV SERVER] Loading description...
Caveats
CK Wiki - Notes
- Creating an actor in script from a temporary ActorBase will cause a CTD when the temporary ActorBase is garbage collected. To make a copy of an actor, use GetActorBase() instead.
Examples
; Get the sex of a leveled actor by using GetLeveledActorBase() so you can call the GetSex() function
if myActorProperty.GetLeveledActorBase().GetSex() == 1
;do something
endifAuto-Generated Example
ActorBase returnedValue = myActor__toCallFunctionOn.GetLeveledActorBase()