コード例 #1
0
 public void AddComponent(PostprocessingGameComponent component)
 {
     component.Initialize();
     toAdd.Add(component);
 }
コード例 #2
0
 public void RemoveComponent(PostprocessingGameComponent component)
 {
     toRemove.Add(component);
 }