Jump to content

Search the Community

Showing results for tags 'command'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • HTML5 Game Coding
    • News
    • Game Showcase
    • Facebook Instant Games
    • Web Gaming Standards
    • Coding and Game Design
    • Paid Promotion (Buy Banner)
  • Frameworks
    • Pixi.js
    • Phaser 3
    • Phaser 2
    • Babylon.js
    • Panda 2
    • melonJS
    • Haxe JS
    • Kiwi.js
  • General
    • General Talk
    • GameMonetize
  • Business
    • Collaborations (un-paid)
    • Jobs (Hiring and Freelance)
    • Services Offered
    • Marketplace (Sell Apps, Websites, Games)

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Skype


Location


Interests

Found 2 results

  1. Ive been making a html game and continuously trying to figure out how to properly process text input with phaser. I would like to move the sprite by text command. For example, by typing "move 10" in text field, the sprite.x will +10; however i tried many different method and as known all didnt work. Below is the source code ive written. Can anyone tell me which part i got wrong or link me to a tutorial explaining how to make it work. Many thanks! <!DOCTYPE html> <html> <head> <style type="text/css"> .absolute { position: absolute; top: 10px; left: 420px; width: 200px; height: 1000px; z-index: 10; } </style> <script type="text/javascript" src="phaser.min.js"></script> </head> <body> <script type="text/javascript"> var game = new Phaser.Game(600, 600, Phaser.AUTO, '', { preload: preload, create: create, update: update }); function preload() { game.load.image('bg','images.jpeg'); game.load.image('goat','goat.png'); game.load.image('run','run.png'); } var goat; var background; function create(){ game.stage.backgroundColor='#ffffff'; background = game.add.image(0,0,'bg'); goat = game.add.sprite(100,100,'goat'); } function checkText(check){ var move = 'move 10' var showText1 = document.getElementById('comments').value; if(showText1.value=== move) { goat.x= +10; } } function update(){ } </script> <div class='absolute'> <form action="" method="post"> <textarea name="comments" id="comments" style="width:96%;height:490px;background-color:white;color:olive;border:2px;padding:2%;font:22px/30px sans-serif;"> </textarea> <button onclick="checkText(check)" style="width:200px;height:100px;border:none;padding:0%;"> <img src='run.png'> </button> </form> </div> </body> </html>
  2. Appreciate any support https://play.google.com/store/apps/details?id=binarypandagames.gravitycommand.ads
×
×
  • Create New...