initial upload

This commit is contained in:
niko
2026-05-24 12:14:04 +02:00
parent 213ed4c965
commit 2526aab9c7
961 changed files with 457060 additions and 10 deletions
@@ -0,0 +1,24 @@
using System;
using UnityEngine;
[Serializable]
public class characteranimations : MonoBehaviour
{
public GameObject Player;
public virtual void Update()
{
if (Input.GetAxis("Vertical") != 0f)
{
GetComponent<NetworkView>().RPC("walking", RPCMode.All, Player.name);
}
else
{
GetComponent<NetworkView>().RPC("idle", RPCMode.All, Player.name);
}
}
public virtual void Main()
{
}
}