using Godot;
using System.Reflection;
using System.Collections.Generic;

namespace Rokojori
{ 
  [Tool]
  [GlobalClass]
  public partial class Vector3PropertyTransfer:Resource
  { 
    [Export]
    public Vector3PropertyName from;

    [Export]
    public Vector3PropertyName to;

    public void Transfer( Material a, Material b )
    {
      var v = from.Get( a );
      to.Set( b, v );
    }

  }
}