| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace BansheeEngine
- {
- /// <summary>
- /// Contains a list of layers that can be used for controlling which <see cref="Renderable"/> is output to which
- /// camera. A maximum of 64 layers are supported.
- /// </summary>
- public static class Layers // Note: Placeholder class, need functionality to edit and persist layer names
- {
- private static string[] names;
- private static UInt64[] values;
- /// <summary>
- /// Returns the names of all available layers.
- /// </summary>
- public static string[] Names
- {
- get
- {
- if (names == null)
- {
- names = new string[64];
- for (int i = 0; i < names.Length; i++)
- names[i] = "Layer_" + i;
- }
- return names;
- }
- }
- /// <summary>
- /// Returns the values of all available layers.
- /// </summary>
- public static UInt64[] Values
- {
- get
- {
- if (values == null)
- {
- values = new UInt64[64];
- for (int i = 0; i < values.Length; i++)
- values[i] = 1UL << i;
- }
- return values;
- }
- }
- }
- }
|