Friday, December 4, 2015

Moving!

tldr; You can find my future posts in blog.hansadrian.com.

Sunday, March 29, 2015

Unity Endless Runner Tutorial #6 - Background Music and Other Improvements

Original Tutorial
http://catlikecoding.com/unity/tutorials/runner/

My version of the game (Version Log)
http://www.hansadrian.com/Stuff/Endless%20Runner%20Tutorial/build.html

GitHub Gist (for full code files)
https://gist.github.com/HansNewbie/10005219/0bdb11657b44c17a8f5b17fc32d1f11d47ff1b62

Completed Project Files (V0.6.1)
Buy this on Selz Selz powering ecommerce websites

For version 0.6, I added simple background music. As I was thinking it could be improved, I made V0.6.1 where you can toggle the music on or off, as well as added background for high score to make it readable.

Tuesday, March 24, 2015

GitHub Project Page on Subdomain of GitHub User Page

I have  been wondering on how to put GitHub Project Page into subdomain of my GitHub User Page as no detailed instructions can be found around. In case you don't understand what I want to achieve, say I already have my GitHub User Page (hansnewbie.github.io) to use custom domain to hansadrian.com (you should follow the guide at http://davidensinger.com/2013/03/setting-the-dns-for-github-pages-on-namecheap/ - I am using Namecheap since it is cheap, as the name suggests). Now, I would like my GitHub Blog Project Page (hansnewbie.github.io/blog) - which is automatically redirected to hansadrian.com/blog - to use custom subdomain of blog.hansadrian.com.

Wednesday, November 12, 2014

Unity Endless Runner Tutorial #5 - Pause

Original Tutorial
http://catlikecoding.com/unity/tutorials/runner/

My version of the game (Version Log)
http://www.hansadrian.com/Stuff/Endless%20Runner%20Tutorial/build.html

GitHub Gist (for full code files)
https://gist.github.com/HansNewbie/10005219/a6046d42e2b35dc67e411ff8ee22647992871e8f

Completed Project Files (V0.6.1)
Buy this on Selz Selz powering ecommerce websites

For version 0.5, I added pause system.

Wednesday, October 15, 2014

Procedural modeling: L-System Tree

Just sharing my L-system on tree creation. First time I did it in Dynamo (http://dynamobim.org/), around 6 months ago during my internship. This time around I am taking Computer Graphics module, so I did it in OpenGL for my lab assignment, although I only use tapered cylinder and ellipse-based cylinder as per assignment requirement.





Sunday, June 1, 2014

Android Home - Intent

Finally I figure out what makes an Android home/launcher an Android home/launcher. You need the intent to be so. The intent is android.intent.category.HOME. With that, your activity will be a home.

Thursday, May 22, 2014

Ceasing of Android Home Sample Development

GitHub
Home

Bad news. I am ceasing development on Android Home Sample. Reason being I found it very hard to update it to follow recent SDK since the basis of the code is very old. I could redo the whole thing, of course, but I find it would be better if I make one from scratch. I might be making a new repo for the launcher from scratch soon. We'll see :)

Thursday, May 1, 2014

Unity Endless Runner Tutorial #4 - High Scores

Original Tutorial
http://catlikecoding.com/unity/tutorials/runner/

My version of the game (Version Log)
http://www.hansadrian.com/Stuff/Endless%20Runner%20Tutorial/build.html

GitHub Gist (for full code files)
https://gist.github.com/HansNewbie/10005219/38e71e0c7358d15335412cbbbcdbb3facee36094

Completed Project Files (V0.6.1)
Buy this on Selz Selz powering ecommerce websites

For version 0.4, I added high score system. I was chasing for speed, so from software engineering view, I broke the architecture. I could not get past one problem.