22 lines
337 B
C#
22 lines
337 B
C#
using Godot;
|
|
using System.Collections.Generic;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori;
|
|
|
|
[Tool]
|
|
[GlobalClass ]
|
|
public partial class LineVFXShaderSetup:Resource
|
|
{
|
|
[Export]
|
|
public LineVFXShaderPointProperties start;
|
|
|
|
[Export]
|
|
public LineVFXShaderPointProperties end;
|
|
|
|
[Export]
|
|
public FloatPropertyName lineLength;
|
|
|
|
}
|
|
|
|
|