Choose different language in a game?

agueisagueis Member Posts: 420

Is there any way to choose different language in a game?, i´m Spanish and i would like to write English and spanish language in my game, thanks

Comments

  • JodyMitomaJodyMitoma Member Posts: 307

    Most text found in the game would either be a graphic/image, or written yourself through a Draw Text attribute. I'm assuming this would only be possible through you creating a new scene for each and every one of your current English scenes, and translating it manually, and linking each scene to the corresponding languages scene.

  • CodeMonsterCodeMonster ACT, AustraliaMember Posts: 1,078

    @JodyMitoma‌ why would you do that? That would take up so much memory it would be rediculous.
    You would create a language attribute name it "language"
    Wherever you display your text, have rules;

    If attribute language = 0
    Display English txt

    If attribute language = 1
    Display Japanese txt

    And keep doing this for all the languages you need.
    Then you would create a "language area" for your main menu where when touching your language buttons it would change the language attribute to whatever you want it to be.

  • JodyMitomaJodyMitoma Member Posts: 307

    @CodeMonster said:

    I must have been tired when I was browsing these forums last night! O.O

  • agueisagueis Member Posts: 420

    Thanks for you´re help

  • Braydon_SFXBraydon_SFX Member, Sous Chef, Bowlboy Sidekick Posts: 9,273

    To add on to what @CodeMonster‌ was saying, you could have a table expression set up for your display text behavior. That way you could grab different language sentences and it would be much easier to edit in the long run.

Sign In or Register to comment.