コード例 #1
0
ファイル: Bomb.hpp プロジェクト: CyrilPivec/teck3
  virtual bool initialize()
  {
    if (!_model.load("./assets/bomb.fbx"))
      {
	std::cout << "Cannot load the bomb model" << std::endl;
	return false;
      }
    return true;
  }
コード例 #2
0
ファイル: AObject.hpp プロジェクト: koolkt/Bomberman
  virtual bool initialize()
  { 
    _speed = 1.6f;
    
    if (!bomberman.load("lib/LibBomberman_linux_x64/assets/marvin.fbx") ) 
      {
	std::cerr << "Shader error in init function" << std::endl;
	return false;
      }
    return (true);
  }