OpenMetaverse.PrimEventArgs.PrimEventArgs C# (CSharp) Méthode

PrimEventArgs() public méthode

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
Résultat 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