コード例 #1
0
 public virtual void Update(IEntityUpdate update)
 {
     this.Flags |= update.Flags;
 }
コード例 #2
0
ファイル: IClientAPI.cs プロジェクト: hippie-b/opensim
        public virtual void Update(IEntityUpdate update)
        {
            m_flags |= update.Flags;

            // Use the older of the updates as the updateTime
            if (Util.EnvironmentTickCountCompare(UpdateTime, update.UpdateTime) > 0)
                m_updateTime = update.UpdateTime;
        }
コード例 #3
0
        public virtual void Update(IEntityUpdate update)
        {
            m_flags |= update.Flags;

            // Use the older of the updates as the updateTime
            if (UpdateTime - update.UpdateTime > 0)
                m_updateTime = update.UpdateTime;
        }