Untitled
unknown
plain_text
2 years ago
266 B
3
Indexable
using UnityEngine; public class HometownContext : MonoBehaviour { public HouseController houseController; private void Awake() { // ... (other components setup) houseController = FindObjectOfType<HouseController>(); } }
Editor is loading...