我正在用JavaScript編寫一個RPG遊戲,我希望我的主角能夠在你按下箭頭鍵或按鍵時移動。我有代碼來生成他,但是我應該如何定義他的位置,以便在上述按鍵被按下時移動? function mainchar(){
var mainchar = new Image();
mainchar.src = /*I'll add this soon*/;
mainchar.sty
我有下面的腳本,它與文檔中提要段落中的示例幾乎相同。 use strict;
use warnings;
use Term::ReadLine;
my $term = Term::ReadLine->new('My shell');
print $term, "\n";
my $prompt = "-> ";
while (defined ($_ = $term->readline