enpu Posted February 26, 2014 Share Posted February 26, 2014 I just started new Panda.js screencast series. http://www.pandajs.net/tutorials/ Reply to request screencast. angelkom and thiezar 2 Quote Link to comment Share on other sites More sharing options...
chanojuano Posted February 26, 2014 Share Posted February 26, 2014 yeaaaai you rock enpu!! tyvm Quote Link to comment Share on other sites More sharing options...
enpu Posted February 27, 2014 Author Share Posted February 27, 2014 More screencasts added! angelkom 1 Quote Link to comment Share on other sites More sharing options...
angelkom Posted February 27, 2014 Share Posted February 27, 2014 Downloading... Quote Link to comment Share on other sites More sharing options...
angelkom Posted February 27, 2014 Share Posted February 27, 2014 4K Video Cool Quote Link to comment Share on other sites More sharing options...
enpu Posted February 28, 2014 Author Share Posted February 28, 2014 Added new screencasts! Feel free to request a screencast. Quote Link to comment Share on other sites More sharing options...
gaelbeltran Posted March 1, 2014 Share Posted March 1, 2014 Wow you are awesome! I just discovered this engine and I can't believe it's the work of just one man. And including documentation and screencasts! I think I have a new favorite html5 game engine Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 7, 2014 Share Posted March 7, 2014 Hey enpu, what about a quick screencast showing how you are doing the "Please rotate your device" in the showcase games, as well as scaling up the canvas to fill up the the browser window after you rotate to the expect orientation? This might be outside of the scope of the engine, but as a new html5 developer, these things would be key to getting started using the new engine. Thanks in advance!Brian Quote Link to comment Share on other sites More sharing options...
enpu Posted March 7, 2014 Author Share Posted March 7, 2014 Uploading gaelbeltran 1 Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 7, 2014 Share Posted March 7, 2014 Thank you enpu for the new video and extremely quick turnaround! What a great first impression of Panda.js and it's creator! I am going to be diving into the engine over the weekend, if I come up with any other good screencast ideas, I will post them in here. Quote Link to comment Share on other sites More sharing options...
enpu Posted March 7, 2014 Author Share Posted March 7, 2014 Great thanks! Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 10, 2014 Share Posted March 10, 2014 Hi enpu, how about a quick screencast showing how to use the game.Vector class? I am specifically looking to use the 'angle', 'distance' and 'length' methods, but I am having trouble even creating a new vector instance.var vector = new game.Vector(100, 100);Is giving me:Uncaught TypeError: undefined is not a functionThanks! Quote Link to comment Share on other sites More sharing options...
enpu Posted March 10, 2014 Author Share Posted March 10, 2014 Hi, Physics module is not loaded in core, so you need to load it first:game.module( 'game.main').require( 'engine.core', 'engine.physics').body(function() {Keep in mind that the physics module is still pretty simple, so if you need more advanced physics in your game, you can use p2.js plugin:https://github.com/ekelokorpi/panda.js-plugins/tree/master/p2 Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 10, 2014 Share Posted March 10, 2014 Ahh, it's always something simple I forget! Thanks again! Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 10, 2014 Share Posted March 10, 2014 So the vector angle method was not working as I was expecting. I had to change it from:Math.atan2(vector.y, vector.x) - Math.atan2(this.y, this.x);to:Math.atan2(vector.y - this.y, vector.x - this.x); This new version is returning the angle in radians. My math is fairly amateur when it comes to games, so I am not sure if this is a bug or a version on the angle that works with the physics engine or whatever. Just figured it was worth pointing out. Quote Link to comment Share on other sites More sharing options...
enpu Posted March 10, 2014 Author Share Posted March 10, 2014 You are right, thanks for pointing that out! If you have GitHub account, feel free to do Pull Request with your fix on develop branch, then you will get to the official contributors list:https://github.com/ekelokorpi/panda.js/graphs/contributors Or if you don't have, i can fix that too Quote Link to comment Share on other sites More sharing options...
codeitloadit Posted March 10, 2014 Share Posted March 10, 2014 Awesome! I just created the pull request. Quote Link to comment Share on other sites More sharing options...
alex2005 Posted March 11, 2014 Share Posted March 11, 2014 I would like to see how could you animate a player from a spritesheet with all the frames in one image liek this one http://i.imgur.com/SIT25vx.png maybe flip the player x on left or right And loading a tileset http://i.imgur.com/ahJidCr.png with a json map http://pastebin.com/pYuC32cn I'm looking at making a platformer, and I'm new to games in general, and i'm looking at an html5 engine, I was looking at using quintus(among others), but I stumbled upon yours, and I like it better... but there isnt a tutorial with commented sections so i can understand it better Is there a like a full platformer, with keyboard support, enemies, coins and all that so i can look at and try and learn? Thanks Quote Link to comment Share on other sites More sharing options...
mgan Posted March 13, 2014 Share Posted March 13, 2014 Just stumbled onto pandajs and love what I see already. Curious if you had thought about posting the screencasts to vimeo as well so they are easier to download? I ask only because I want to watch the screencasts while I'm commuting (NYC) and I lose streaming capabilities when underground. I've never ripped videos from youtube but after a quick google I see it is possible. But vimeo offers solutions on the page that make it easier. Thanks Enu your project looks incredible and I can't wait to dig in and help out. Quote Link to comment Share on other sites More sharing options...
enpu Posted March 13, 2014 Author Share Posted March 13, 2014 Hi mgan! That's great idea. I will make screencasts downloadable, using Vimeo or just put them on pandajs.net website for download. Quote Link to comment Share on other sites More sharing options...
enpu Posted March 13, 2014 Author Share Posted March 13, 2014 http://download.pandajs.net/screencasts/ Uploading Quote Link to comment Share on other sites More sharing options...
mgan Posted March 13, 2014 Share Posted March 13, 2014 Downloads are great thanks! Quote Link to comment Share on other sites More sharing options...
mgan Posted March 13, 2014 Share Posted March 13, 2014 btw, what program are you using to do the screen recording, incredible quality Quote Link to comment Share on other sites More sharing options...
enpu Posted March 13, 2014 Author Share Posted March 13, 2014 Just QuickTime Player that is installed by default on OSX. I'm using MacBook Retina, so that's why so high resolution Quote Link to comment Share on other sites More sharing options...
kura kura Posted April 27, 2014 Share Posted April 27, 2014 You Are Great Enpu, 5 stars for you.....i will start learn ur panda.js engine Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.