How to Change the Skybox and Ground settings in Babylon.JS – Tutorial
In our last tutorial on Babylon.JS, we loaded a 3D model into a basic environment. But we had a problem with the skybox and ground settings (you can see the results here). Here was the final code from last time: Let’s get those environment options adjusted so that they are not so distracting. All of […]
Developing iPhone/iPad/Android applications with Corona: Orientation Change
In this final “Hello World” with Corona, we will look at how to allow for orientation change in our app. First, please recognize that this is for a general rotation. Seldom will this be sufficient to handle all rotation needs of your app. You will usually need to code in the screen size and where […]
Developing iPhone/iPad/Android Games with Corona: Creating Animations
In this demonstration, we will take our existing Hello World project and add some animation. To get started, we have the existing code: local textObj = display.newText(“Hello World!”, 50, 50, nil, 24) textObj:setTextColor( 255, 255, 255) local mybutton = display.newImage( “button.png” ) mybutton.x = display.contentWidth/2 mybutton.y = display.contentHeight-75 local h = textObj.height local w = […]
Mobile App Development with Corona: Getting started – Hello World
Things you need: Corona SDK (http://www.CoronaLabs.com), iPhone SDK (http://developer.apple.com/ipad/sdk/) (if you want to publish to an iPad or iPhone) And an editor (I’m using Xcode, but you could also use BBEdit, Eclipse with LuaEclipse, TextMate, Notepad or Corona Project Manager). You don’t have to own any of this, you can easily get started with the […]
Word Press Tutorial: Setting up a sticky post
Setting up a sticky post (a post that stays at the top of the page) is incredibly easy… if you have the right plug-in! It is possible to create sticky posts without a plug-in, if you enjoy doing PHP coding. I happen to like coding in PHP, but my wife and daughter don’t, so here […]