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

9 lines
308 B
C#
Raw Normal View History

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