Comic Editor Reference

From Wildermyth Wiki

This is a collection of reference material that explains how to use the Comic Editor to tell stories.

Make a New Event

Todo add pictures to help!

  • Open up Scratchpad
  • go to the Content and Comics Editor
  • Click on the Effects tab at the top or press Control+2
  • Click the New... Button or press Control+N
  • Select the type of event you are creating, for example Arrive at Hostile Site or Mission Victory.
  • Enter a name (in plain english, with spaces) for the event. The tool will create an ID automatically.

Event is now exist! Maybe save?

Codestuff

Read this first: Story Inputs and Outputs

Use the STUB fields to document intent, and leave notes about what SHOULD happen, especially if you don't know how to do something. It's totally fine to STUB out complicated effects or fiddly details that you're not sure how to handle. That's what programmers are for after all, right?

Story Roles

Create as many as you need

Choices

How many choices are you giving the player? Are some of them optional? Do they lead to additional branches?

Outcomes

Specify what should happen as a result of choices, or chance.

use the STUB field!

Comic Editor Basics

  • Each box on the left holds text for a different section of the story: a prompt, a choice, or an outcome.
  • Plain text (none of those Microsoft Word special apostrophes and ellipses if you please...)
  • Press the save button!
  • Undo should work, but sometimes need to press it more than once.

Making Panels

Use <panel> tags to separate text into panels. It's pretty easy to specify panel sizes and add actors with facial expressions and basic functionality.

<panel>Use panel tags to separate text.
<panel|bookish>if there's an actor, they will speak the line.
<panel|poet thinking>Or maybe you want them to think it instead.
<panel|goofball joke>Or make a funny face!
<panel sixth left|bookish grim size:1.75>
<panel half left|snark sad >Nobody actually likes your face.

ComicTool example1.png

Everything about a panel is stored as text, in the panel tag. These examples show how to use panel styles (left, sixth, half), how to add actors ( |rolename ), and how to add actor styles (thinking, joke, grim). Panel styles are convenient for quickly making panels, but panel tags can get cumbersome fast. Good thing is, we have a visual editor so you don't need to edit all this stuff by hand.

To open up the Panel Editor, click on a panel in the Comic Editor display. You can use the visual panel editor to do almost everything, including adding actors, setting their facial expressions, really everything except creating new panels and modifying the text that goes in them.

Protip: Panel tags can be copied and pasted around as a quick way to duplicate a scene.

Using Tags to Control Text

See : Tag Reference

Each event can specify a number of targets, which are often heroes, selected for a particular personality, relationship, etc.. These targets are assigned to roles. Roles are easy-to-remember words like leader, target, hero, hothead, friend, etc..

Once you have a target assigned to the role, you can insert the target into your text using a role tag like this.

<panel twoThirds |leader narrating|hothead pained>
<leader> takes a long, appraising look at <hothead>. 
<leader.mf:He/She> wipes a fleck of bluish ooze off <leader.mf:his/her> nose.

ComicEditor simpleTags1.png

This is a simple example but we can get a lot more sophisticated, and tags can be nested as well. That can get really confusing. Maybe we should build some better tools?

One of the key uses of tags is to give heroes different lines depending on their personalities. This works by embedding the stats you care about in the tag.

<panel |leader talking>
<leader.goofball/bookish:
Surprise everyone! It's fightin' time!
/Ahem. Our foes appear to have arrived.>

ComicEditor personalityTags.png

You can embed tags within tags. The most common use case will be putting gender tags inside personality tags. But you can go further if you want to. You can even use tags to select whole panels, like this:

<bookish.poet/snark:
  <panel|bookish joy>
  This will make an excellent song!
/
  <panel|bookish skeptical>
  What is it about me that attracts trouble? Is it my hair?
>

ComicEditorPersonalityTagsPanels.png

This can get out of hand very quickly, but might be useful for reaction panels, or whatever? I don't know. Be careful out there.

Tags can do a lot more! For a full list of available tags see : Tag Reference.

Style Markup

See: Text Styles

Text in a comic panel gets a style automatically depending on if the TextBox is set up as narration, speech, thought, etc.. The Style can be modified using square brackets. Generally, text-style markup is similar to html markup, in that you have a starting and ending tag, BUT! our style format doesn't require the end tag to have anything in it.

It looks like this:

 [bold]bold text [italic]Bold italic text[]bold again[] regular again.


TODO add some pictures of styled text here

You can set the size, color, and font of the text. See Main article on Text Styles for a full list of available fonts, styles, and colors.

Other Details

TODO document all the buttons!