예제 #1
0
파일: Game.cs 프로젝트: jpluimers/CGEngine
        public void InitializeScene()
        {
            //Scene creation
            _sequence = new CGESequence();
            _sequence.AddFrameBackground(Params.Background);
            _sequence.SetBackgroundSelected(0);

            //Initial creation objects
            _sequence.AddScreenObjects(Params.ObjectType, Params.NumObjects, Params.HasMovement);
        }
예제 #2
0
파일: Game.cs 프로젝트: netonjm/CGEngine
        public void InitializeScene()
        {
            //Scene creation
            _sequence = new CGESequence();
            _sequence.AddFrameBackground(Params.Background);
            _sequence.SetBackgroundSelected(0);

            //Initial creation objects
            _sequence.AddScreenObjects(Params.ObjectType, Params.NumObjects, Params.HasMovement);
        }