ASM Advanced Game Design

Erik Brown, erik.brown@asmprograms.org

Meeting 9

MC: Muhammad

Tomorrow: Donnie

 


LVL2

 

Progress Presentation!

This will include your team progress, and any progress you are making with personal projects.

 

 

LVL1

 

 


Game proposal

Completion time: approx. 2 weeks (approx. 7 meetings)

The goal is to view these projects on Thursday, July 15

Write a proposal for an independent project you would like to build. Include a visual aid in your document — this can be a character sketch or a level design sketch.

Options:

  • Construct 3 game
  • Roblox Developer game
  • Twine story-game
  • Music compositions
  • 3D modeling
  • Etc....

The visual aid can be drawn on paper and photographed, or you can use digital tools like Piskel or Sketchpad

An example: Adriana
Finished game

 


Twine

Twinery.org

 

Some Twine story examples:

Ella Stevenson
Adrian Martinez
Felix Romero
Thien Le

 

Recommended!

"Harlowe" is the default story format in Twine. Change it to "Sugarcube" just in case you would like to add advanced features (CSS, sound, Twine code).

In the top menu:
Twine >> Story Formats
Then select "SugarCube 2.37.3" and set it as the new default story format.

 

What to type in passages

Always give a passage a title. Keep it short.

You can type text into a passage, and you can also include HTML!

<h1>   </h1> This creates the biggest header text
<h2>   </h2> This creates header text, but a bit smaller
<strong>   </strong> This will boldface text
<em>   </em> This will create italics

 

To make a link to a new passage

Use:   [[   ]]

Format:   [[ desired text -> next passage title ]]

(Or:   [[ desired text | next passage title ]] — same thing)

 

Adding images – hotlinking

You can copy the full URL (web address) of an image file on the web, and use it in your Twine passage.


Here is starter code to copy'n'paste:

<img src="">


<img src="paste the full URL here">

For example: if I search for Mario and find a picture in Google Images, I can view it and then right-click and Copy image address

This is the data on my clipboard after copying:
https://pngimg.com/uploads/mario/mario_PNG71.png

The I can write the HTML tag and paste in the url.

<img src="https://pngimg.com/uploads/mario/mario_PNG71.png">