Jump to content

BryceJS

Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    New York, NY

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

BryceJS's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello all, So I have been searching and I can't seem to figure this one out. I am trying to find out what the best way to end my game is? I can't seem to come across something such as scene.end() or something of that nature. What is the best practice for where I should put my winstate conditional in babylon.js? It seems like when I put it in my engine.runRenderLoop the game appears to freeze and I am unable to append anything to the page or break out of that runRenderLoop.
  2. Hello guys, This is my first HTML5 game, it is a classic arcade basketball game. The goal is to score as many points as possible within the 35 second shot clock. Click and hold on the basketball until the power meter is filled green and then release to shoot the ball. Feedback for timing is shown in the top right corner. Everything was done with HTML5, JavaScript, jQuery, and CSS Please feel free to leave any feedback (positive and negative welcome) or advice for improvement! http://brycekrah.github.io/Three-Point-Shootout/
  3. It is working now, thank you both!
  4. Hello all, I have read through the various posts about fixing this issue but I still cannot seem to figure it out. I am receiving the following error: GET http://localhost:3000/assets/car.babylon.manifest?1459361047809 404 (Not Found) Here is the code that is giving the error: BABYLON.SceneLoader.ImportMesh("car", "assets/", "car.babylon", scene, function (meshes) { var m = meshes[0]; m.scaling = new BABYLON.Vector3(0.5,0.5,0.5); }); In my assets folder I created a file called: scene.babylon.manifest and inserted the following code into it: { "version" : 1, "enableSceneOffline" : true, "enableTexturesOffline" : true } I am not sure why this is not working, I feel like I need to require that babylon.manifest file somewhere but I am not sure where? also, my index.html file looks like this at the top: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Babylon My Scene</title> <link rel="stylesheet" href="style.css"> <script src="http://www.babylonjs.com/cannon.js"></script> <script src="http://www.babylonjs.com/oimo.js"></script> <script src="http://www.babylonjs.com/babylon.js"></script> <script src="script.js" charset="utf-8"></script> </head> Any help would be greatly appreciated, Thanks!
×
×
  • Create New...