[DragConverter]
Support Types
Type
Description
Parameters
Requirements
Examples
using RenownedGames.ApexEditor;
using UnityEngine;
public static class MyDragConverters
{
[DragConverter]
public static bool Vector3ToVector2(Vector3 value, out Vector2 result)
{
result = new Vector2(value.x, value.y);
return true;
}
}Last updated