您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
635 B
19 行
635 B
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(fileName = "RoamingAroundCenter", menuName = "EntityConfig/Roaming Around Center")]
|
|
public class RoamingAroundCenterConfigSO : NPCMovementConfigSO
|
|
{
|
|
[Tooltip("Is roaming from spwaning center")]
|
|
[SerializeField] private bool _fromSpawningPoint = true;
|
|
|
|
[Tooltip("Custom roaming center")]
|
|
[SerializeField] private Vector3 _customCenter;
|
|
|
|
[Tooltip("Roaming distance from center")]
|
|
[SerializeField] private float _radius;
|
|
|
|
public bool FromSpawningPoint => _fromSpawningPoint;
|
|
public Vector3 CustomCenter => _customCenter;
|
|
public float Radius => _radius;
|
|
}
|