33 lines
659 B
C#
33 lines
659 B
C#
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 partial class AlphaScissorFoliage:FoliageTransparencyRenderMode
|
|
{
|
|
public override void ApplyTransparencyMode( Material material, FoliageRenderLayer layer)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |