示例#1
0
 /// <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);
示例#2
0
 public override bool RemoveDecal(DecalInstance instance)
 {
     return(instances.Remove((ScreenSpaceInstance)instance));
 }