Characters
var characters = {
"e":{
}
}var characters = {
"e": {
"Name": "Evelyn", // The name that will be shown when this character speaks.
"Color": "#00bfff" // It could also be an rgb or rgba value.
}
}var characters = {
"e": {
"Name": "Evelyn",
"Color": "#00bfff",
"Directory": "Evelyn", // Optional*
"Images":{ // Images Identifier for the "Show" statement.
"Normal": "normal.png",
"Mad": "hmph!.png",
"Doubt": "uhh.png",
"Disappointed":"ngggg....png",
"Happy": "hehehehe.png"
},
"Face": "face.png", // Optional, side image to show every time the character speaks.
"Side": { // Side images identifiers to show on dialogs when the character speaks with a colon and side image name, like e:Smiling
"Smiling": "smiling.png"
}
}
}Last updated
Was this helpful?