I am working on a game, but how do I work on the language chooser.
Here’s the example:
(please type in the javascript so I can understand them)
this is for everyone and @Luxapodular
I am working on a game, but how do I work on the language chooser.
Here’s the example:
(please type in the javascript so I can understand them)
this is for everyone and @Luxapodular
iiii doooont knooow looool
then why did you reply?
just a basic outline of what you can do
somwhere in the program
project.language = "en";
when english pressed
project.language = "en";
when french pressed
project.language = "fr";
text (clips with named text boxes inside)
if(project.language === "en") {
this.textBox.setText("hello");
} else if(project.language === "fr") {
this.textBox.setText("bonjour");
}
helpful, but how do I make a variable in wick editor?
do something like this:
var something = "something"
this,
var something = 5
or this,
var something = ["Sup","sick","odie"]
very helpful
You can also make a project variable
project.something = "value";
Project variables are helpful because you can refer to them from anywhere in the project