| 1234567891011121314151617181920212223242526 |
- using UnityEngine;
- public class Orbs : MonoBehaviour
- {
- public float orbPosX;
- public float orbPosY;
- public float orbPosZ;
-
- public float orbRotX;
- public float orbRotY;
- public float orbRotZ;
- public bool isCollected;
- // Start is called once before the first execution of Update after the MonoBehaviour is created
- void Start()
- {
-
- }
- // Update is called once per frame
- void Update()
- {
-
- }
- }
|