Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T162874
Change Details
Change Details
Old
New
Diff
``` modded class Hologram { override void UpdateHologram(float timeslice) { super.UpdateHologram(timeslice); if (IsCollidingZeroPos()) SetIsColliding(true); } } ``` You need to modify the root class, add in scripts\4_World\classes\hologram.c it: ``` if(IsCollidingZeroPos()) SetIsColliding(true); ``` to fix this error
``` modded class Hologram { override void UpdateHologram(float timeslice) { super.UpdateHologram(timeslice); if (IsCollidingZeroPos()) SetIsColliding(true); } } ``` You need to modify the root class, add in scripts\4_World\classes\hologram.c in UpdateHologram(float timeslice) function it: ``` if(IsCollidingZeroPos()) SetIsColliding(true); ``` to fix this error
``` modded class Hologram { override void UpdateHologram(float timeslice) { super.UpdateHologram(timeslice); if (IsCollidingZeroPos()) SetIsColliding(true); } } ``` You need to modify the root class, add in scripts\4_World\classes\hologram.c
in UpdateHologram(float timeslice) function
it: ``` if(IsCollidingZeroPos()) SetIsColliding(true); ``` to fix this error
Continue