rj-action-library/Runtime/Rendering/Assets/Foliage/FoliageMaterialOverrides/TransparencyRenderModes/FoliageTransparencyRenderMo...

30 lines
643 B
C#
Raw Normal View History

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 FoliageSource">
<title>
Abstract archetype resource to create foliage material overrides
</title>
<description>
</description>
</summary>
*/
[Tool]
[GlobalClass, Icon("res://addons/rokojori_action_library/Icons/Scatterer.svg") ]
public abstract partial class FoliageTransparencyRenderMode:Resource
{
public abstract void ApplyTransparencyMode( Material material, FoliageRenderLayer layer );
}
}