KSP-Conformal-Decals/Source/ConformalDecals/IProjectionTarget.cs
2021-01-01 14:10:27 -08:00

9 lines
308 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);
ConfigNode Save();
}
}