SAvatar

Index

Properties Index

Property

int ID get

Vector3 Position get

Vector3 Velocity get

Quaternion Rotation get

string Username get

string Title get

Properties

ID

int ID get

Avatar's ID

ID = Space.Scene.Avatars[1].ID
--server script that prints a list of IDs of players online whenever someone joins
function OnAvatarJoin(id)
  local numOfAvatars = Space.Scene.ConnectedAvatars

  for num =1 , numOfAvatars, 1 do
    Space.Log(Space.Scene.Avatars[num].ID)
  end
end

Position

Vector3 Position get

Avatar's position

Velocity

Vector3 Velocity get

Avatar's Velocity

Rotation

Quaternion Rotation get

Avatar's Rotation

Username

string Username get

Avatar's Username

Title

string Title get

Avatar's Title

Last updated

Was this helpful?