mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
9 lines
308 B
C#
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();
|
|
}
|
|
} |