KSP-Conformal-Decals/Source/ConformalDecals/Targets/IProjectionTarget.cs
2022-03-14 21:36:50 -07:00

8 lines
289 B
C#

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