0

因此,当我运行下面的脚本时,它在编译器错误中显示“未定义属性键的访问”我正在完成一个教程,但试图自己重新创建它。如果我将教程中的源代码带入 Flash,则脚本运行良好,没有问题。我需要以某种方式定义或导入 Key 吗?我以为它是像 Stage.height 这样的内置东西

function runGame():void{
    if(Key.isDown(Key.UP) || Key.isDown(87)){
        if(velocityY<velocityYMax){
            velocityY+=acceleration;
        }
    }
}
4

1 回答 1

0

使用此导入!

import flash.ui.Keyboard;
于 2013-03-14T02:05:08.530 回答