Quick question about *goto_scene

I can’t seem to find a definitive answer anywhere, but when defining a scene to jump to, is it possible to use scene titles that have more than one word, or should I just shorten all of my files to a single string of characters?
For instance, if I wanted to jump to the label “nn” in the file “cutting your teeth”, would

*goto_scene cutting your teeth nn

work, or would all of the extra spaces just confuse things? Would it work with the scene title in quotation marks?
I know it’s an easy fix to just replace the spaces in my titles with underscores, but I prefer the cleaner look in my file organizing, so I’m just curious if there is a way to make it work as is. Thanks.

Scene names should not have spaces. If you want, use underscore (or other casing convention) to separate words.

*goto_scene cutting_your_teeth nn
1 Like

No, it would not work. The interpreter always parses a space as the end of a keyword, and quote marks are only used for assigning text values to variables.