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

8 lines
281 B
C#
Raw Normal View History

2021-01-01 05:05:30 +00:00
using UnityEngine;
namespace ConformalDecals {
public interface IProjectionTarget {
2021-01-01 22:28:30 +00:00
bool Project(Matrix4x4 orthoMatrix, Transform projector, Bounds projectionBounds);
2021-01-01 05:05:30 +00:00
void Render(Material decalMaterial, MaterialPropertyBlock partMPB, Camera camera);
}
}