v0.30.0
Pre-release
Pre-release
Default emotions for characters
const engine = novely({
characters: {
Yuki: {
name: 'Yuki',
color: '#f595f6',
emotions: {
normal: './normal.png'
}
}
},
defaultEmotions: {
Yuki: 'normal'
}
})
engine.script({
start: [
// Without emotion!
engine.action.showCharacter('Yuki')
]
})