Class: LibSL::ObjectDeGrabPacket
Instance Attribute Summary
Attributes inherited from Packet
#acks, #acks_flag, #reliable_flag, #resent_count, #resent_flag, #sequence_number, #zero_coded_flag
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Packet
decode, #decode_msg, #encode, #encode_msg, #initialize, #method_missing, zero_decode
Constructor Details
This class inherits a constructor from LibSL::Packet
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class LibSL::Packet
Class Method Details
.packet_id ⇒ Object
2708 2709 2710 |
# File 'lib/_packets.rb', line 2708 def self.packet_id() 4294901879 end |
Instance Method Details
#build_structure ⇒ Object
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 |
# File 'lib/_packets.rb', line 2712 def build_structure() @blocks = [ [:AgentData, Block.new([ [:AgentID, :LLUUID], [:SessionID, :LLUUID] ])], [:ObjectData, Block.new([ [:LocalID, :LLU32] ])], [:SurfaceInfo, VariableBlockCollection.new([ [:UVCoord, :LLVector3], [:STCoord, :LLVector3], [:FaceIndex, :LLS32], [:Position, :LLVector3], [:Normal, :LLVector3], [:Binormal, :LLVector3] ])] ] end |