NetworkView
.Find
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
NetworkView
NetworkView
.Find
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
NetworkView
All Members
Variables
group
isMine
observed
owner
stateSynchronization
viewID
Functions
RPC
SetScope
Class Functions
Find
Inherited Variables
animation
audio
camera
collider
constantForce
enabled
gameObject
guiText
guiTexture
hideFlags
hingeJoint
light
name
networkView
particleEmitter
renderer
rigidbody
tag
transform
Inherited Functions
BroadcastMessage
CompareTag
GetComponent
GetComponent.<T>
GetComponentInChildren
GetComponentInChildren.<T>
GetComponents
GetComponents.<T>
GetComponentsInChildren
GetComponentsInChildren.<T>
GetInstanceID
SendMessage
SendMessageUpwards
ToString
Inherited Class Functions
Destroy
DestroyImmediate
DontDestroyOnLoad
FindObjectOfType
FindObjectsOfType
Instantiate
Instantiate.<T>
operator !=
operator ==
operator bool
static
function
Find (viewID :
NetworkViewID
) : NetworkView
Description
Find a network view based on a
NetworkViewID
.
JavaScripts
JavaScript
C#
Boo
// Print the names of the objects which have the view IDs given in the array
function
PrintNames(viewIDs :
Array
) {
for
(
var
ID :
NetworkViewID
in
viewIDs) {
Debug.Log
(
"Finding "
+ ID);
var
view : NetworkView =
NetworkView.Find
(ID);
Debug.Log
(view.observed.name);
}
}
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
PrintNames(ArrayList viewIDs) {
foreach (
NetworkViewID
ID
in
viewIDs) {
Debug.Log
(
"Finding "
+ ID);
NetworkView view =
NetworkView.Find
(ID);
Debug.Log
(view.observed.name);
}
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def PrintNames(viewIDs as ArrayList):
for
ID as
NetworkViewID
in
viewIDs:
Debug.Log
(('Finding ' + ID))
view as NetworkView =
NetworkView.Find
(ID)
Debug.Log
(view.observed.name)