Tanoda
AutoFind.cs
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) Ultraleap, Inc. 2011-2020. *
3 * *
4 * Use subject to the terms of the Apache License 2.0 available at *
5 * http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
6 * between Ultraleap and you, your company or other organization. *
7 ******************************************************************************/
8
9using System;
10
11namespace Leap.Unity.Attributes {
12
13 [Obsolete]
14 public enum AutoFindLocations {
15 Object = 0x01,
16 Children = 0x02,
17 Parents = 0x04,
18 Scene = 0x08,
19 All = 0xFFFF
20 }
21
22 [Obsolete]
23 public class AutoFindAttribute : Attribute {
25
27 this.searchLocations = searchLocations;
28 }
29 }
30}
AutoFindAttribute(AutoFindLocations searchLocations=AutoFindLocations.All)
Definition: AutoFind.cs:26
readonly AutoFindLocations searchLocations
Definition: AutoFind.cs:24
UnityEngine.Object Object