-
Notifications
You must be signed in to change notification settings - Fork 1
/
AnalyticsEventParam.cs
71 lines (63 loc) · 1.11 KB
/
AnalyticsEventParam.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
namespace UnityEngine.Analytics
{
[Serializable]
public class AnalyticsEventParam
{
[SerializeField]
private string m_Tooltip = string.Empty;
[SerializeField]
private AnalyticsEventParam.RequirementType m_RequirementType;
[SerializeField]
private string m_GroupID;
[SerializeField]
private string m_Name;
[SerializeField]
private ValueProperty m_Value;
public AnalyticsEventParam(string name)
{
this.m_Name = "";
}
public AnalyticsEventParam.RequirementType requirementType
{
get
{
return this.m_RequirementType;
}
}
public string groupID
{
get
{
return "";
}
}
public ValueProperty valueProperty
{
get
{
return this.m_Value;
}
}
public string name
{
get
{
return this.m_Name;
}
}
public object value
{
get
{
return (object) this.m_Value.propertyValue;
}
}
public enum RequirementType
{
None,
Required,
Optional,
}
}
}