This repository was archived by the owner on Aug 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathExecuteAlwaysExample.cs
79 lines (47 loc) · 1.86 KB
/
ExecuteAlwaysExample.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
72
73
74
75
76
77
78
79
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UnityAttributesExample {
[ExecuteAlways]
public class ExecuteAlwaysExample : MonoBehaviour {
/// <summary>
/// https://docs.unity3d.com/ScriptReference/ExecuteAlways.html
/// </summary>
void Start() {
if (Application.IsPlaying(gameObject)) {
// Play logic
} else {
// Editor logic
}
}
#region On an object which is not part of the playing world, the functions are not called constantly like they otherwise are.
void Update() {
if (Application.IsPlaying(gameObject)) {
// Play logic
} else {
// - Update is only called when something in the Scene changed.
// Editor logic
//Debug.LogWarning("Editor Update()");
}
}
void OnGUI() {
if (Application.IsPlaying(gameObject)) {
// Play logic
} else {
// - OnGUI is called when the Game view receives a non-editor-only Event that it does not use (e.g., EventType.ScrollWheel)
// and does not forward to the Editor's keyboard shortcut system (e.g., EventType.KeyDown, EventType.KeyUp).
// Events forwarded to the Game view are enqueued and are not guaranteed to be processed immediately.
// Editor logic
}
}
void OnRenderObject() {
if (Application.IsPlaying(gameObject)) {
// Play logic
} else {
// - OnRenderObject and the other rendering callback functions are called on every repaint of the Scene view or Game view.
// Editor logic
}
}
#endregion
}
}