当前位置: 首页>>代码示例>>C++>>正文


C++ Physics::shutdown方法代码示例

本文整理汇总了C++中Physics::shutdown方法的典型用法代码示例。如果您正苦于以下问题:C++ Physics::shutdown方法的具体用法?C++ Physics::shutdown怎么用?C++ Physics::shutdown使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Physics的用法示例。


在下文中一共展示了Physics::shutdown方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main

int main()
{
   Physics app;
   // DIYmain app;

    if (app.startup() == false)
    {
        return -1;
    }

    while (app.update() == true)
    {
        app.draw();
    }

    app.shutdown();

    return 0;
}
开发者ID:,项目名称:,代码行数:19,代码来源:

示例2: startGUInity

EXPORT
int startGUInity()
{
    
    int notOK = GraphicsSystem::getInstance()->init(1024,768);
	if (notOK)
		return 1;
    
    AssetDatabase::init();
    
    Input input(GraphicsSystem::getInstance()->getWindow());
	
	SoundSystem::getInstance()->init();
    
    Physics physics;
    physics.init();
    
    
    EngineMode engineMode = EngineMode::editor;
    
    shared_ptr<Editor> editor = make_shared<Editor>();
    editor->init();
    
    shared_ptr<Game> game = make_shared<Game>();
    game->init();
    
    shared_ptr<MyGame> myGame = make_shared<SpaceShipGame>();
    
    myGame->setupInitialScene();
    
    editor->world->awake();
    game->world->awake();
    
    while (!glfwWindowShouldClose(GraphicsSystem::getInstance()->getWindow().get())) {
        Time::frameStart();
        
        Input::updateInputState();
        
        
        switch (engineMode)
        {
            case EngineMode::editor:
                editor->update(Time::deltaTime,game->world);
                break;
            case EngineMode::game:
                game->update(Time::deltaTime);
                break;
            default:
                break;
        }
		
        if (Input::getKeyPressed(GLFW_KEY_1))
            engineMode = EngineMode::editor;
        if (Input::getKeyPressed(GLFW_KEY_2))
            engineMode = EngineMode::game;
        
        float fps = Time::frameEnd();
        cout << "FPS:" << 1.0f/fps << endl;
    }
    
    physics.shutdown();
	
    editor->shutdown();
    
    game->shutdown();
    
    // close GL context and any other GLFW resources
	SoundSystem::getInstance()->shutdown();
    GraphicsSystem::getInstance()->shutdown();
    
    return 0;
}
开发者ID:Caspila,项目名称:GUInity,代码行数:72,代码来源:main.cpp


注:本文中的Physics::shutdown方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。