Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/LogicSimpleRopes.cs
2026-02-21 16:45:37 +08:00

13 lines
403 B
C#

using UnityEngine;
public class LogicSimpleRopes : MonoBehaviour
{
private void OnGUI()
{
LogicGlobal.GlobalGUI();
GUILayout.Label("Simple persistent rope test (procedural rope and linkedobjects rope)");
GUILayout.Label("Move the mouse while holding down the left button to move the camera");
GUILayout.Label("Use the spacebar to shoot balls and aim for the ropes to test the physics");
}
}