本文整理汇总了C#中Entity.AddSystemBit方法的典型用法代码示例。如果您正苦于以下问题:C# Entity.AddSystemBit方法的具体用法?C# Entity.AddSystemBit怎么用?C# Entity.AddSystemBit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Entity
的用法示例。
在下文中一共展示了Entity.AddSystemBit方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Change
public void Change(Entity e) {
bool contains = (systemBit & e.GetSystemBits()) == systemBit;
bool interest = (typeFlags & e.GetTypeBits()) == typeFlags;
if (interest && !contains && typeFlags > 0) {
actives.Add(e.GetId(),e);
e.AddSystemBit(systemBit);
Added(e);
} else if (!interest && contains && typeFlags > 0) {
Remove(e);
}
}
示例2: Add
/// <summary>Adds the specified entity.</summary>
/// <param name="entity">The entity.</param>
protected void Add(Entity entity)
{
Debug.Assert(entity != null, "Entity must not be null.");
entity.AddSystemBit(this.SystemBit);
if (entity.IsEnabled)
{
this.Enable(entity);
}
this.OnAdded(entity);
}
示例3: Add
protected void Add(Entity e)
{
System.Diagnostics.Debug.Assert(e != null);
e.AddSystemBit(systemBit);
if (e.Enabled == true) {
Enable(e);
}
Added(e);
}
示例4: Add
protected void Add(Entity e)
{
e.AddSystemBit(systemBit);
if (e.Enabled == true) {
Enable(e);
}
Added(e);
}
示例5: Add
private void Add(Entity entity)
{
Assert.False(_entities.Contains(entity) || entity.SystemMask.HasBits(this.SystemBit));
_entities.Add(entity); // assume that doesn't contain, shouldn't be possible
entity.AddSystemBit(this.SystemBit);
this.OnEntityAdded(entity);
}