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 when the character speaks.
}
}Last updated
Was this helpful?