Untitled
Anonymous
plain_text
04/13/2023 6:37 AM
356 B
9
Indexable
using UnityEngine;
public class HometownContext : MonoBehaviour
{
public HouseController houseController;
private void Awake()
{
// ... (other components setup)
houseController = FindObjectOfType<HouseController>();
}
}
Editor is loading...