mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 15:27:59 +01:00
32 lines
393 B
C#
32 lines
393 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Fie.Object
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class FieStatusEffectsPullEntity : FieStatusEffectEntityBase
|
||
|
{
|
||
|
public float x;
|
||
|
|
||
|
public float y;
|
||
|
|
||
|
public float z;
|
||
|
|
||
|
public float pullDuration;
|
||
|
|
||
|
public Vector3 pullPosition
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return new Vector3(x, y, z);
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
x = value.x;
|
||
|
y = value.y;
|
||
|
z = value.z;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|