Complete Upgrade

This commit is contained in:
ApfelTeeSaft
2026-05-23 14:12:25 +02:00
parent 426a40e01d
commit 82fd6c1923
765 changed files with 106326 additions and 0 deletions
@@ -0,0 +1,19 @@
using UnityEngine;
public class SMModelScript : MonoBehaviour
{
public SlenderMan SM;
public PlayerScript view;
private void Update()
{
view.cansee = false;
view.drain = 0f;
}
private void OnWillRenderObject()
{
SM.CheckSanity();
}
}