class Conreality::Theater
Represents a Conreality
theater of operations.
Constants
- KEY
- TABLE
Attributes
label[RW]
The theater's designated label.
@return [String]
location[RW]
The theater's origin location (as GPS coordinates).
@return [?]
uuid[R]
The theater's unique identifier.
@return [String]
Public Class Methods
new(session, uuid)
click to toggle source
@param session [Session] @param uuid [#to_s]
Calls superclass method
# File lib/conreality/theater.rb, line 31 def initialize(session, uuid) super(session) @uuid = uuid.to_s end
Public Instance Methods
each_asset(&block)
click to toggle source
@todo
# File lib/conreality/theater.rb, line 52 def each_asset(&block) # TODO end
each_camera(&block)
click to toggle source
@todo
# File lib/conreality/theater.rb, line 58 def each_camera(&block) # TODO end
each_object(&block)
click to toggle source
@todo
# File lib/conreality/theater.rb, line 46 def each_object(&block) # TODO end
each_player(&block)
click to toggle source
@todo
# File lib/conreality/theater.rb, line 64 def each_player(&block) # TODO end
each_target(&block)
click to toggle source
@todo
# File lib/conreality/theater.rb, line 70 def each_target(&block) # TODO end
inspect()
click to toggle source
Returns a developer-friendly representation of this theater.
@return [String]
# File lib/conreality/theater.rb, line 40 def inspect sprintf("#<%s:%#0x(uuid: %s)>", self.class.name, self.__id__, @uuid) end