OpenMetaverse.PrimEventArgs.PrimEventArgs C# (CSharp) Method

PrimEventArgs() public method

Construct a new instance of the PrimEventArgs class
public PrimEventArgs ( Simulator simulator, Primitive prim, ushort timeDilation, bool isNew, bool isAttachment ) : System
simulator Simulator The simulator the object originated from
prim Primitive The Primitive
timeDilation ushort The simulator time dilation
isNew bool The prim was not in the dictionary before this update
isAttachment bool true if the primitive represents an attachment to an agent
return System
        public PrimEventArgs(Simulator simulator, Primitive prim, ushort timeDilation, bool isNew, bool isAttachment)
        {
            this.m_Simulator = simulator;
            this.m_IsNew = isNew;
            this.m_IsAttachment = isAttachment;
            this.m_Prim = prim;
            this.m_TimeDilation = timeDilation;
        }
PrimEventArgs