BluePhaze's Forum Posts

  • Have you tried to read the failure.txt file that it tells you it created? The above error is just telling you there was a problem. The text file it created will tell you what it was.

  • maybe for Windows Phone 8, Windows 8 and Xbox one as they all run the same kernel, but Xbox 360 is totally different beast not built on the 8.1 architecture... it just looks like it is

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • For my boss characters I have a timer that triggers their different attacks. It also triggers there animations for each attack as well. pretty simple to do.

  • C2 works on Windows.... The games work in any browser so OS doesn't effect the games, but it does effect your ability to create them in C2. Windows 8 is pretty much your only choice if you want to make games for windows app store as well.

  • Can't really do much without either a capx or a screenshot of your logic. Have you looked at the built in templates for infinite jumpers, flyers, runners, etc... they all have scrolling backgrounds...

  • use the touch object. Look at the flappy bird and flying along templates included with construct to see how to use it. Also the manual and tutorials are your friends. I would definitely look to them before asking in case you questions are already answered in them.

  • Hopefully this time there will be 2D tilesets that aren't strictly super low res and pixelated... I would take a good look at http://kenney.nl/assets for a great example of how non-pixel art tilesets can be made to look great.

  • If you are targeting strictly mobile then the question is why did you go with HTML5 to begin with? That is the real question for anyone that is developing games. HTML5 is great and flexible but it is not the ideal platform for mobile games. The fact that it can export to them (Via third party exporters and wrappers) does not make it ideal for mobile. I love C2 for what it does, but for larger mobile games there are frameworks like Unity which work great. But they also do not allow you to just drag and drop.

    Knowing your target platform and the limitations of the different development options are very important before trying to start any project which has a goal of being published for money. I have C2 for some of my projects and Unity for others. C2 gives a great balance of price vs. value. If you want a platform that is more tailored toward mobile than C2 you will need to either learn to program, or spend more money. There is always a trade off. Pick your poison

  • C2 doesn't load in the browser, it is a desktop app... Your games(canvases) load in the browser. if you run multiple games via iFrame you are getting the overhead from all of them (unless they unfocused iframes pause themselves).

    I have found very few cases where it is the CPU that is the bottleneck so the timesharing is less important than video memory unless all your games are physics games.

  • C2 has a jetpack joyride gameplay example. Look for the "Flying Along" template when you create a new project or when you look at the built in example templates. This is what I used as the base for my current game.

  • You may also want to check the "My Documents/Visual Studio" directory as sometimes it drops them there instead.

  • Most of the ad networks will not serve ads in an app till it is published, this stops people from artificially displaying a lot of ads and getting money for apps that are not actually displaying ads to the public.

  • You can also set scrollTo on another invisible object, and pin that object at an offset to your player if you don't want the camera centered directly on the player.

  • I have paused all my Windows Phone efforts until the windows phone 8.1 update comes out. The lack of webgl, etc... is killing memory management and causes my game to play like garbage compared to iOS and Android...

  • WP8 doesn't have very good memory management and tends to load the whole game at once. In visual studio to test it on the phone you just tell it to deploy to the phone instead of the emulator if you want to test it directly. Once you do that, the game will be on your phone as an app in the apps list.