rj-action-library/Runtime/Shading/Materials/Transfers/IntPropertyTransfer.cs

26 lines
391 B
C#
Raw Normal View History

2025-01-03 12:09:23 +00:00
using Godot;
using System.Reflection;
using System.Collections.Generic;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class IntPropertyTransfer:Resource
{
[Export]
public IntPropertyName from;
[Export]
public IntPropertyName to;
public void Transfer( Material a, Material b )
{
var v = from.Get( a );
to.Set( b, v );
}
}
}