We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2db51 commit 6c799b0Copy full SHA for 6c799b0
MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs
@@ -20,6 +20,13 @@ public bool isLocalPlayer
20
return networkedObject.isLocalPlayer;
21
}
22
23
+ public bool isOwner
24
+ {
25
+ get
26
27
+ return networkedObject.isOwner;
28
+ }
29
30
protected bool isServer
31
{
32
get
@@ -41,13 +48,6 @@ protected bool isHost
41
48
return NetworkingManager.singleton.isHost;
42
49
43
50
44
- protected bool isOwner
45
- {
46
- get
47
- return networkedObject.isOwner;
- }
51
public NetworkedObject networkedObject
52
53
0 commit comments