Page MenuHomeFeedback Tracker

Hologram placement in null vector
Assigned, NormalPublic

Description

Crates, barrels and other items can be place in the zero vector, coordinates <0,0,0>. The solution lies in this bug fix

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
General
Additional Information
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

Event Timeline

Nytlenc created this task.Jan 21 2022, 2:47 AM
Nytlenc edited Additional Information. (Show Details)
Nytlenc edited Additional Information. (Show Details)
Nytlenc updated the task description. (Show Details)Jan 21 2022, 2:53 AM
Geez changed the task status from New to Assigned.Jan 25 2022, 5:25 PM