18 lines
259 B
C#
18 lines
259 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;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|