kDecals
kDecals copied to clipboard
Create DecalData at runtime
DecalData.material is read-only.
Fastfix:
Runtime/DecalData.cs : 91 line
change
public Material material => m_Material;
to
public Material material
{
get { return m_Material; }
set { m_Material = value; }
}
but it starts covering the whole object