scene update

This commit is contained in:
kivss
2025-11-23 23:19:11 +08:00
parent 0804b43255
commit 6639fbb164
86 changed files with 48451 additions and 33 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[ExecuteAlways]
public class GetGlobalMatrixLite : MonoBehaviour
{
void Update()
{
Shader.SetGlobalMatrix("_LightMatrix", Matrix4x4.Rotate(transform.rotation));
}
}