Page MenuHomeFeedback Tracker

PhxInteractionLayers.FIREGEOM removed in 1.22
Closed, ResolvedPublic

Description

I noticed my mods don't work in 1.22, because the FIREGEOM entry in the PhxInteractionLayers enum was removed and I don't see any replacement for it.
I'm using it together with the DayZPhysics.RayCastBullet(); to get a point in the world and ignoring things like bushes and other things, which don't have a collision. That's why I needed the FIREGEOM in there.

What would be an alternative for FIREGEOM ? Or is it going to be added back ?

Details

Severity
Crash
Resolution
Open
Reproducibility
Always
Operating System
Windows 10
Category
General
Steps To Reproduce
void TestFireGeom() {

	vector camPos = GetGame().GetCurrentCameraPosition();
	vector camDir = GetGame().GetCurrentCameraDirection().Normalized() * 2000.0;
	Object hitObj;
	vector hitPos, hitNormal;
	float fraction;
	PhxInteractionLayers layers = PhxInteractionLayers.ITEM_SMALL | PhxInteractionLayers.ITEM_LARGE | PhxInteractionLayers.VEHICLE_NOTERRAIN | PhxInteractionLayers.BUILDING | PhxInteractionLayers.CHARACTER | PhxInteractionLayers.VEHICLE | PhxInteractionLayers.ROADWAY | PhxInteractionLayers.FIREGEOM | PhxInteractionLayers.DOOR | PhxInteractionLayers.WATERLAYER | PhxInteractionLayers.TERRAIN | PhxInteractionLayers.FENCE | PhxInteractionLayers.AI;
	DayZPhysics.RayCastBullet(camPos, camPos + camDir, layers, GetGame().GetPlayer(), hitObj, hitPos, hitNormal, fraction);

}

Event Timeline

LBmaster created this task.Jul 28 2023, 2:34 PM
Geez changed the task status from New to Assigned.Jul 31 2023, 11:16 AM
Geez closed this task as Resolved.Jul 31 2023, 11:23 AM
Geez claimed this task.
Geez added a subscriber: Geez.

Hello LBmaster.
This has been fixed for the next experimental update. Also, according to the devs FIREGEOM was unused and nothing was being set to FIREGEOM previously. Therefore you had no reason to use it.

Geez added a comment.EditedJul 31 2023, 11:33 AM

Just to clarify - FIREGEOM will be added back but will be assigned to the same value as RAGDOLL_NO_CHARACTER, which should have no impact.