21 lines
311 B
C#
21 lines
311 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
[Tool]
|
||
|
[GlobalClass]
|
||
|
public partial class TextureCombinerMaterialOutput:Resource
|
||
|
{
|
||
|
[Export]
|
||
|
public Material material;
|
||
|
|
||
|
[Export]
|
||
|
public Texture2DPropertyName textureName;
|
||
|
|
||
|
}
|
||
|
}
|