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