This commit is contained in:
2026-07-02 09:32:27 +07:00
5931 changed files with 610 additions and 3328 deletions

View File

@@ -0,0 +1,14 @@
using UnityEngine;
public class WorldSpacePing : MonoBehaviour
{
void LateUpdate()
{
// Face the main camera
if (Camera.main != null)
{
transform.LookAt(transform.position + Camera.main.transform.rotation * Vector3.forward,
Camera.main.transform.rotation * Vector3.up);
}
}
}