Skip to main content

The Arbitrary Gamejam Website is Almost Complete!

So, I've been quite quiet lately, due to coursework and whatnot, but thankfully its the holidays now and i've had a little time to get back to doing personal projects. So, the first thing I decided to tackle was an official website for The Arbitrary Gamejam...

As you might already know, www.TheArbitraryGamejam.com  actually directs you to a page on this blog, this was only temporary. Eventually I want TAG to stand on its own. I've been working on the site for a couple days, so I thought i'd show it off a tiny bit.

As you can see it's not finished (although, I am going for the minimalist look). The fonts are not final and the only button that is functional is the "Rules" button. Eventually the goal is to have all the important information on this one screen.

The site has been built using Rails (and Bootstrap for style points), because I've been toying with the idea of using the site to accept all the game submissions. That way, I can create a voting system so the public can express their opinions on which games are best, and give the entries a permanent home. However the downside here is that would be one less reason to visit the hosts site (Which is the whole point of TAG!). So i'll be looking for smart alternatives.

I want to make sure that the current host is really exposed on the site, so I've been playing with the idea of a custom TAG log for each host, here are some examples:


The problem with this is that I need to get logos that I can use from each host, and that's not always possible. So far this is the best way I can think of showing off the host, but I am definitely open to suggestions. Let me know in the comments if you've got an idea.

I also want to have a countdown to the next TAG in the form of a loading progress bar. But i'm not so sure about that one. I've yet to get in contact with the current TAG host (Joel Schumacher) about his preferences.

Joel, if you're reading this, get in touch!

Anyways, that's all for now. I expect to have the site up and running at full capacity sometime before new year, but who knows! It's a busy time of year. If you have any suggestions you can leave a comment below or tweet @TickTakashi.

For updates on my game projects stick around! I'll be posting something exciting in the next couple days.

~Tick

Comments

Popular posts from this blog

Unity: How Adapters can help you write fewer MonoBehaviours

TL;DR: You don't need to duplicate a bunch of code to do the same things to a Image and a SpriteRenderer , or RectTransform and Transform , etc. You can use a simple pattern called the Adapter Pattern. If you've never used it before, this post explains how. The Problem: Image vs SpriteRenderer Lets say you want to make a sprite fade out , maybe its a dead monster or a collectible, but in either case you want it to gracefully depart from the screen rather than blink out of existence. Kinda like this eyeball monster from  Beastly : So that's pretty easy right, one way of doing it is with a MonoBehaviour that modifies the sprites alpha value via SpriteRenderer.color . Your class might look something like this: public class AlphaFaderSprite : MonoBehaviour { public SpriteRenderer spr; public float fade_percentage; void Update() { spr.color = new Color(spr.color.r, spr.color.g, spr.color.b, fade_percentage); } } Now, anyone who's used Unit

Wacom vs N-Trig - A Modern Comparison

WARNING : This post is long. I wrote this because I could not find an unbiased comparison of the modern N-Trig and Wacom technologies online. It was written in response to the artistic outcry regarding the Surface Pro 3. If you are an artist, I believe it is worth reading. UPDATED as of 20th June 2014 to reflect N-Trig software advancements. UPDATED as of 23rd June 2014 to reflect new direct Digitizer comparison information. Those of you who may visit this site regularly will know that I am a game developer, but what you might not know is that I also do a lot of sketching. (Maybe one day I will post the stuff online) Since I am a geek, I do almost all of my sketching digitally, which means I am always looking out for new developments in digitizer technology. This brings me to this post in particular: Following the announcement of the Surface Pro 3 , many artists were shocked and disappointed by the news that the SP3 would be using N-Trig technology rather than Wacom techn

Design Bites: Minecraft - Feed The Beast

The "Design Bites" series is about learning or appreciating just one design element of one game. It's about applying an analytical eye, even if it doesn't touch on everything. What's Minecraft - Feed The Beast? Minecraft is a Sandbox developed and released by Mojang in 2011 (Kinda, it was in beta for a long time). The player roams a procedurally generated world building things and collecting resources with a variety of tools. Feed The Beast (FTB) is a collection of Mods for Minecraft, which add new items, creatures, resources and other features to the game. There are many different Feed The Beast modpacks, each with their own goals and focuses. This article is specifically about "Feed The Beast: Infinity Evolved". I would encourage anyone curious about FTB to head on over to the Feed The Beast website or Forums and check it out! What's Awesome? Deep inside all humans is the burning desire to build a nuclear reactor. No? Just me? Alr