asp.net mvc - Phaser game library with javascript and VS 2013 web express -


so i'm totally new phaser game library , i'm trying setup project using vs 2013 web express in mvc project. i'm wanting use javascript (not typescript) , i'm assuming can use iisexpress web service vs creates when starts. of tutorials i've seen talk getting apache setup, i'd prefer use iisexpress when click run vs it's easier because don't have anything.

so added phaser project. complained pixi. added pixi project, , when have following line following error:

var game = new phaser.game(500, 600, phaser.auto, 'game_div');  "javascript runtime error: object doesn't support action" 

is setup of phaser ok? can not use iisexpress vs run phaser?

my index.cshtml is

@section scripts{ <script src="~/scripts/pixi/pixi.js"></script> <script src="~/scripts/phaser/src/phaser.js"></script> <script src="~/scripts/main.js"></script> }  <div id="game_div">  </div> 


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -