mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 04:23:04 +00:00
15 lines
353 B
C#
15 lines
353 B
C#
using UnityEngine;
|
|
|
|
namespace SanAndreasUnity.Behaviours.World
|
|
{
|
|
public class AddFocusPointWhenLoaderFinishes : MonoBehaviour
|
|
{
|
|
public FocusPointParameters parameters = FocusPointParameters.Default;
|
|
|
|
|
|
private void OnLoaderFinished()
|
|
{
|
|
FocusPoint.Create(this.gameObject, this.parameters);
|
|
}
|
|
}
|
|
}
|