KSP-Conformal-Decals/Source/ConformalDecals/IProjectionTarget.cs

8 lines
281 B
C#

using UnityEngine;
namespace ConformalDecals {
public interface IProjectionTarget {
bool Project(Matrix4x4 orthoMatrix, Transform projector, Bounds projectionBounds);
void Render(Material decalMaterial, MaterialPropertyBlock partMPB, Camera camera);
}
}