21 lines
387 B
C#
21 lines
387 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
using System;
|
||
|
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class TextureCombinerProcessingRect
|
||
|
{
|
||
|
public TextureCombinerContext context;
|
||
|
public int processingX = 0;
|
||
|
public int processingY = 0;
|
||
|
public int processingWidht = 0;
|
||
|
public int processingHeight = 0;
|
||
|
|
||
|
public TextureBuffer<Color> output;
|
||
|
|
||
|
}
|
||
|
}
|