コード例 #1
0
ファイル: RenderSystem.cs プロジェクト: Setoville/Engine
 /// <summary>
 /// Removes a component. The component will be removed at the end of the frame.
 /// </summary>
 /// <param name="Component"> The component to be removed. </param>
 public void RemoveGraphicsComponent(GraphicsComponent Component)
 {
     ToRemove.Enqueue(Component);
 }
コード例 #2
0
 /// <summary>
 /// Removes a component. The component will be removed at the end of the frame.
 /// </summary>
 /// <param name="Component"> The component to be removed. </param>
 public void RemoveGraphicsComponent(GraphicsComponent Component)
 {
     ToRemove.Enqueue(Component);
 }
コード例 #3
0
ファイル: RenderSystem.cs プロジェクト: Setoville/Engine
 /// <summary>
 /// Adds a component. The component will be added at the end of the frame.
 /// </summary>
 /// <param name="NewComponent"> The component to add. </param>
 public void AddGraphicsComponent(GraphicsComponent NewComponent)
 {
     ToAdd.Enqueue(NewComponent);
 }
コード例 #4
0
 /// <summary>
 /// Adds a component. The component will be added at the end of the frame.
 /// </summary>
 /// <param name="NewComponent"> The component to add. </param>
 public void AddGraphicsComponent(GraphicsComponent NewComponent)
 {
     ToAdd.Enqueue(NewComponent);
 }