17 lines
220 B
C#
17 lines
220 B
C#
|
|
using Godot;
|
||
|
|
|
||
|
|
|
||
|
|
namespace Rokojori
|
||
|
|
{
|
||
|
|
[Tool]
|
||
|
|
[GlobalClass]
|
||
|
|
public partial class FlareVFXPreset:Resource
|
||
|
|
{
|
||
|
|
[Export]
|
||
|
|
public Color mainColor;
|
||
|
|
|
||
|
|
[Export]
|
||
|
|
public FlareVFXLayer[] flareLayers = [];
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|