示例#1
0
        public static RenderPipeline UpdateSystem(this RenderPipeline pipeline, IUpdatableSystem system)
        {
            var stage = new UpdateSystemStage(system);

            pipeline.Add(stage);
            return(pipeline);
        }
示例#2
0
 public UpdateSystemStage(IUpdatableSystem system)
 {
     this.System = system;
 }