LadyAliceMargatroid 523e7ed898 Added BrachTileBoost system
Added the new coilhead behaviour to the knight
Added treasure room puzzle for bedroom
Changed many LogInfo into LogDebug
Removed jank animator override stuff (no offense)
Changed how treasure rooms lock their doors to work in multiplayer
Removed basement scripts
2024-08-19 02:44:15 -07:00

35 lines
936 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using DunGen;
namespace ScarletMansion.GamePatch.Props {
public class FireExitEmptySpaceCheck : RandomProp {
public GameObject target;
public Bounds bounds;
public override void Process(RandomStream randomStream, Tile tile) {
var b = GetBounds();
var layerMask = LayerMask.GetMask(new string[3] { "Room", "Railing", "MapHazards" });
if (Physics.CheckBox(b.center, b.extents, transform.rotation, layerMask)){
Plugin.logger.LogDebug("Disabling fire exit potential spawn due to overlapping space");
target.SetActive(false);
}
}
public Bounds GetBounds(){
return transform.TransformBounds(bounds);
}
public void OnDrawGizmosSelected(){
var b = GetBounds();
Gizmos.DrawWireCube(b.center, b.size);
}
}
}