2025-08-31 06:05:39 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Godot;
|
|
|
|
using System;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
/** <summary for="class RelativeFoliagePriority">
|
|
|
|
|
|
|
|
<title>
|
|
|
|
FoliagePriority to define the render priority relative to the FoliageRenderer
|
|
|
|
</title>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
</summary>
|
|
|
|
*/
|
|
|
|
|
|
|
|
[Tool]
|
|
|
|
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/Scatterer.svg") ]
|
2025-09-28 08:59:16 +00:00
|
|
|
public partial class RelativeFoliagePriority:FoliagePriority
|
2025-08-31 06:05:39 +00:00
|
|
|
{
|
|
|
|
[Export]
|
|
|
|
public int offset;
|
|
|
|
}
|
|
|
|
}
|