27 lines
508 B
Plaintext
27 lines
508 B
Plaintext
|
Scriptname _00E_VisionFX_NPC_SC extends Actor
|
||
|
|
||
|
Event OnLoad()
|
||
|
|
||
|
if !bSetUpRequired
|
||
|
Self.SetGhost(True)
|
||
|
Self.SetAlpha(0.65)
|
||
|
MS04MemoryFXBody01VFX.Play(Self)
|
||
|
; MS04MemoryFXShaderNew.Play(Self)
|
||
|
Else
|
||
|
Self.SetAlpha(0.0)
|
||
|
Self.SetGhost(True)
|
||
|
EndIf
|
||
|
|
||
|
EndEvent
|
||
|
|
||
|
Function SetAlphaAndFX()
|
||
|
|
||
|
Self.SetAlpha(0.65)
|
||
|
MS04MemoryFXBody01VFX.Play(Self)
|
||
|
|
||
|
EndFunction
|
||
|
|
||
|
bool Property bSetUpRequired = False Auto
|
||
|
|
||
|
VisualEffect Property MS04MemoryFXBody01VFX Auto
|
||
|
; EffectShader Property MS04MemoryFXShaderNew Auto
|