Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードは width コマンドの設定を認識しません:
hi.graphics.strokeColor(Color.Red, width: 5);
stageXL APIによると、このwidth属性はオプションの位置属性です。width:したがって、メソッド呼び出しでプレフィックスを使用する必要はありません。
width
width:
hi.graphics.strokeColor(Color.Red, 5);
詳細については、関数のオプション パラメーターを参照してください。
stageXL apiから、コードは次のようになります。
hi.graphics.strokeColor(Color.Red, width = 5);
=いいえ:
=
: