/// <summary> /// Removes the given decal /// </summary> /// <param name="instance">A decal instance, or <c>null</c></param> /// <returns>True if the decal was present and is now removed, otherwise false</returns> public abstract bool RemoveDecal(DecalInstance instance);
public override bool RemoveDecal(DecalInstance instance) { return(instances.Remove((ScreenSpaceInstance)instance)); }