Disconnect game experiment

Click the image to try the demo:

Disconnect - Game Experiment - alexbezuska.com

Disconnect

Game Experiment

Not really anything to do in this ‘game’ it’s just a practice thing I made about a feeling of being disconnected from someone you care about.

Scurry Game Devlog 4 – Motels and Skeleton beetle

 

Scurry Update February 4, 2014

Poor guy all dead and stuff…

But then he’s back, leaping though the air and scurrying across store shelves which are now laden with cool power-ups and also treacherous traps…
Scurry Update February 4, 2014

Watch out for roach motels, run through one of these and you will end up as a set of walking bones…Scurry Update February 4, 2014

…and shortly after crumbled to a pile of dust. Scurry Update February 4, 2014

but don’t worry, you can try again right away!Scurry Update February 4, 2014

Play the current version of the game here: http://scurrygame.com

Scurry Game Devlog 3 – Lots of new stuff!

So it has been a while since I have posted any news about the game that Eric and I are working on. Scurry is coming along great and I have lots to show.

We have added a title screen, complete with twitching antennae.

Scurry Title screen

 

Here are a few shots of gameplay:

Scurry Screen Scurry Screen

A lot of the work has been Eric getting everything setup to scale and fit any screen size properly, detect desktop or mobile browsers, and have working audio on many devices.

I on the other hand have been working on the artwork and animations, I am excited about how it is all turning out, and we have a roadmap for completing the game with two types of levels and 4 levels total. It will feel really good to finish off our first real game.

Play the current version of the game here: http://scurrygame.com

Scurry Game Dev Log – New Game!

New Indie Game project!

Scurry is an HTML5 browser game where you play as a beetle who is running through a grocery store. Run as fast as you can, pull off daring jumps, avoid shoppers, roach motels and other treacherous obstacles! How far will you make it?

Here is what Scurry looked like right after Eric added in my character sprite:
Scurry Game early screentshot

The project is a two-person team effort; Eric Lathrop is doing the code, and I am working the artwork.

We just met up at a coffee shop for our first session and got a lot done, I am very happy with how it is turning out so far.

Here is a shot of the game with some shelf art and grocery store props added:

Scurry early artworkAs of now, Eric has about 12 hours in of Dev time, and I have spent around 6 hours doing the artwork
I have some videos below that show the progress taking Eric’s engine and adding in the art assets I have been creating. Eric is working on generating infinite levels using repeating and randomized artwork, resulting in a new experience for the player each time.

jquery.timepicker and another quickTip

So here is another useful jQuery plugin I found while doing a signup form project at work, the jquery.timepicker.  As you may have guessed – this is similar to the date picker  componant in jQueryUI, but as the name implies it is for Times only. This particular project called for me to create a means for the user to enter a time range they were available for an event. I started to create my own custom UI for this, but then the lack of  time made me search for an existing tool.  After a quick search I found jquery.timepicker by John Thornton, here is the main demo site: jQuery TImePicker

I really love the simplicity of the plugin, I simply created a class called “timepicker” and gave that class to each of the input elements on the page that needed it.
Then I added this snippet of jQuery to the page:

/* All you need to get started once jquery.timepicker is included on your page:
*/
$('.timepicker').timepicker();

This is all you need to start a very basic time picker, but I wanted to restrict the user to a certain range, so I used the parameters that John describes on the jquery.timepicker site:

$('.timepicker').timepicker({
	'disableTimeRanges': [
    ['12am', '10am'],
    ['4:30pm', '11:59pm'],
  ]
});

quickTip: Out of sight – Out of Mind

jquery.timepicker
Let’s ditch these non-selectable times, and lower our chances of  confusing the user.

This worked great, but it does not hide the disabled times, it only grays them out and prevents selection, so today’s quickTip is how to remove them from sight, and provide a better user experience.

I found out that John wrote jquery.timepicker to give disabled times a css class of “ui-timepicker-disabled”, so it’s very easy to hide these elements using either CSS or jQuery.

jquery.timepicker 2
Here is the result, only see what you can pick, only pick what you can see.

I have noted both methods below:

// The CSS Method

.ui-timepicker-disabled{ display:none; }

 

// The jQuery Method

$('.ui-timepicker-disabled').hide();

Have a great day, and if you have a quick tip be sure to pm me on twitter @alexbezuska and I can share it on the site.

Learn. Create. Explore. Code. 
-Alex Bezuska