You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
320 B
C#
13 lines
320 B
C#
using UnityEngine;
|
|
using Fusion.CloudServices;
|
|
|
|
public class LogRegion : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
// Adjust the path if your asset lives elsewhere
|
|
var settings = Resources.Load<AppSettings>("Photon Fusion App Settings");
|
|
Debug.Log($"Fixed Region = {settings.FixedRegion}");
|
|
}
|
|
}
|