toy example of show text length

This commit is contained in:
Matt Brockman 2021-01-14 16:02:24 -08:00
parent 7136dd2f8e
commit 7d63390534

View file

@ -0,0 +1,13 @@
// Checkout the repo examples to get an idea of other ways you can use scripting
// https://github.com/latitudegames/Scripting/blob/master/examples
const modifier = (text) => {
state.displayStats = [{key:'Text Length', value: text.length, color: 'red'}]
return { text }
}
// Don't modify this part
modifier(text)