- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
//编辑
我想在切换状态和返回状态后保存生命值、金币、乐趣值。
我创建了游戏对象/数组:
game.yourGameData = {};
game.yourGameData.health = 100;
game.yourGameData.coin = 100;
game.yourGameData.fun = 100;
接下来我定义参数 pet 的值:
//设置生命值
var health, fun, coin;
health = this.game.yourGameData.health;
fun = this.game.yourGameData.fun;
coin = this.game.yourGameData.coin;
//custom properties of the pet
this.pet.customParams = {health, fun, coin};
并且值显示没有错误。现在我通过函数打开子游戏:
showtry: function()
{
this.game.state.start('brick_destro_game');
},
当我完成子游戏并切换回主状态时,生命值值为 100。
切换回状态函数:
clickOnActionExit: function()
{
this.game.state.start('GameState');
},
我想看到什么:宠物盯着100健康,然后他不吃任何东西。生命值降至 70。我将状态切换到子游戏并开始游戏。我完成游戏并返回主状态。宠物的生命值应为 70,但已重置为 100。
最佳答案
就像您提到的,您可以将数据保留在带外(全局),或者我喜欢使用一种我认为比全局变量更好的方法,即将一个新对象附加到“游戏”来保存您的数据。这将在游戏中持续存在。
例如
this.game.yourGameData = {};
this.game.yourGameData.health = 70;
this.game.yourGameData.cons = 100;
关于javascript - 改变状态后保存健康、乐趣、金币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37942489/
我真的无法在任何地方找到此信息。实际上,我找到了一个地方,每个 db 调用都在一个 js 脚本中。 有人可以澄清一下我是否应该运行这个: var config = { apiKey: "AAAPPPI
//编辑 我想在切换状态和返回状态后保存生命值、金币、乐趣值。 我创建了游戏对象/数组: game.yourGameData = {}; game.yourGameData.health = 100;
输入字符串: Lorem ipsum tip. Lorem ipsum loprem ipsum septum #match this#, lorem ipsum #match this too#.
假设我想创建一个动态库 dynamic.so,但我的代码引用了某个其他静态库 static.a 中存在的函数。自然地,如果我使用 g++ 和 -shared 选项进行编译和链接,dynamic.so
远程节点位于不同的机器上。 我从本地节点测试: $ erl -name foobar Erlang/OTP 17 [erts-6.2] [source] [64-bit] [smp:2:2] [asy
我正在对使用 NHibernate 实现持久性的类库进行单元测试。 NHibernate 正在使用 Sqlite 内存数据库进行测试。在正常情况下,很容易让 StructureMap 为我踢出一个 s
在我看来,私有(private)函数只能在类内部访问,但在我的示例中,以下代码 bindPreferenceSummaryToValue(findPreference("RestoreItem"))
mysql_query("INSERT INTO dictionary ('word', 'definition') VALUES ('".$word."','".$definition."');")
两者在执行上有什么区别吗? launch { function1() } fun function1(){ DoSomething... } 和 launch { functio
能否建议我如何处理多个 anchor 标记以实现点击功能? 我的代码是这样的: test1 test2 我的 jQuery 功能是: $('a').click(function(event) {
我是一名优秀的程序员,十分优秀!