46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using GameFramework;
|
|
using UnityEngine;
|
|
|
|
namespace UnityGameFramework.Runtime
|
|
{
|
|
/// <summary>
|
|
/// UnityEngine.Vector2 变量类。
|
|
/// </summary>
|
|
public sealed class VarVector2 : Variable<Vector2>
|
|
{
|
|
/// <summary>
|
|
/// 初始化 UnityEngine.Vector2 变量类的新实例。
|
|
/// </summary>
|
|
public VarVector2()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 从 UnityEngine.Vector2 到 UnityEngine.Vector2 变量类的隐式转换。
|
|
/// </summary>
|
|
/// <param name="value">值。</param>
|
|
public static implicit operator VarVector2(Vector2 value)
|
|
{
|
|
VarVector2 varValue = ReferencePool.Acquire<VarVector2>();
|
|
varValue.Value = value;
|
|
return varValue;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 从 UnityEngine.Vector2 变量类到 UnityEngine.Vector2 的隐式转换。
|
|
/// </summary>
|
|
/// <param name="value">值。</param>
|
|
public static implicit operator Vector2(VarVector2 value)
|
|
{
|
|
return value.Value;
|
|
}
|
|
}
|
|
}
|