rokojori_action_library/Runtime/VFX/LineVFX/LineMaterial/LineVFXShaderSetup.cs

21 lines
310 B
C#

using Godot;
using System.Collections.Generic;
namespace Rokojori;
[Tool]
[GlobalClass ]
public partial class LineVFXShaderSetup:Resource
{
[Export]
public LineVFXShaderPointProperties start;
[Export]
public LineVFXShaderPointProperties end;
[Export]
public FloatPropertyName lineLength;
}