Example #1
0
 /// <summary>
 ///     <para>Clears the registered prefab instances from the prefab manager for a specific prototype.</para>
 /// </summary>
 /// <param name="manager">The manager that defines the prototypes you want to GPU instance.</param>
 /// <param name="prototype">The prototype to clear registered instances for.</param>
 public static void ClearRegisteredPrefabInstances(GPUInstancerPrefabManager manager, GPUInstancerPrototype prototype)
 {
     manager.ClearRegisteredPrefabInstances(prototype);
 }
Example #2
0
 /// <summary>
 ///     <para>Clears the registered prefab instances from the prefab manager.</para>
 /// </summary>
 /// <param name="manager">The manager that defines the prototypes you want to GPU instance.</param>
 public static void ClearRegisteredPrefabInstances(GPUInstancerPrefabManager manager)
 {
     manager.ClearRegisteredPrefabInstances();
 }