Search the Community
Showing results for tags 'conversation'.
-
Hello everyone! Nice to make your acquaintance. It’s been awhile since I’ve been active on here, and I’d like to change that. So let’s start a conversation. Whatcha working on? You a team? Solo developer? Let’s chat! I’d love to hear from you.
- 1 reply
-
- projects
- conversation
-
(and 6 more)
Tagged with:
-
Hello, guys, I am trying since days to find an easy working solution for my game project. I want to add a simple dialogue system, similar to this of Pokémon, with just a dialogue box and some text appearing in it. Unfortunately, there is no tutorial which could explain or help me out with this, or I am not able to find one I got a .json file with all the dialogues (attached) and I want to call them into my actual state. For entering the dialogue I have already this, but the text wouldn't be displayed update: function(){ game.physics.arcade.collide(monk, buildings2_noWalk1, function(){console.log('buildings2');}); game.physics.arcade.collide(monk, buildings1_noWalk1, function(){console.log('buildings1')}); game.physics.arcade.collide(monk, mountains_nowalking1, function(){console.log('mountains');}); // Activate Dialogue Mode if(enter.isDown){ game.paused = true; //set game paused } // Set Dialogue if(game.paused){ console.log("Dialogue"); game.add.text(100, 100, "Test"); } Could someone help me out? I really just want it in a simple way, no complex scripting. Thanks a lot Best wishes Moonware dialogue.json
- 2 replies
-
- phaser
- javascript
-
(and 4 more)
Tagged with:
-
I am testing gameplay mechanics with Phaser and I am trying to have one character communicate a simple message to another when they are facing each other. Is there a way I can mimick this dialogue box using Phaser? So basically, when one sprite collides with another, I want to show this box with a message in it possible give the user input choices. Ex: "What is your name?" User choices would be: "x", "y", "z" and an "Answer" button.
- 3 replies
-
- conversation
- phaser
-
(and 2 more)
Tagged with: