Files
BABA_YAGA/Assets/Third Parties/Opsive/UltimateCharacterController/Scripts/ThirdPersonController/Items/ThirdPersonMagicItemProperties.cs

22 lines
881 B
C#
Raw Normal View History

2026-06-14 23:57:44 +07:00
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.ThirdPersonController.Items
{
using Opsive.UltimateCharacterController.Items.Actions.PerspectiveProperties;
using UnityEngine;
/// <summary>
/// Describes any third person perspective dependent properties for the magic item.
/// </summary>
public class ThirdPersonMagicItemProperties : ThirdPersonItemProperties, IMagicItemPerspectiveProperties
{
[Tooltip("The location that the magic originates from.")]
[SerializeField] protected Transform m_OriginLocation;
public Transform OriginLocation { get { return m_OriginLocation; } set { m_OriginLocation = value; } }
}
}