NoveltyML reference > Object traits > ShowLog

<ShowLog>

Shows a log of passed dialogue from the current page.
This trait applies to Text objects only.

The actual text that is displayed can be customized using a custom format.


Attributes

Attribute Description
format Log format
custom Custom format (with names)
custom-unnamed Custom format (without names)


format [integer]

Defines the format of an individual log entry.

Value Description
0 "[name]: [phrase]"
1 "[name]
[phrase]"
2 Custom format (see custom)

Example:
actor-color = "false"


custom [string]

Defines a custom format for an individual log entry.
[name] and [phrase] will be substituted by the actual name and phrase of the log entry.

Example:
custom = "[name] said: [phrase]"


custom-noname [string]

Defines a custom format for individual log entry without a name.
[phrase] will be substituted by the actual phrase of the log entry.

Example:
custom = "Narrator: [phrase]"


Example

<Traits>
	<ShowName/>
</Traits>

Back to top