introvoyz041's picture
Migrated from GitHub
d883ffe verified
// Copyright (c) Meta Platforms, Inc. and affiliates.
using Meta.XR.Samples;
using UnityEngine;
namespace NorthStar
{
[MetaCodeSample("NorthStar")]
public class DontDestroy : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}
}