タグ

ブックマーク / typescripttolua.github.io (1)

  • TypeScriptToLua

    // Give points to all friends around the target position function onAbilityCast(caster: Unit, targetPos: Vector) { const units = findUnitsInRadius(targetPos, 500); const friends = units.filter(unit => caster.isFriend(unit)); for (const friend of friends) { friend.givePoints(50); } } -- Give points to all friends around the target position function onAbilityCast(caster, targetPos) local units = fin

    efcl
    efcl 2020/11/30
    TypeScriptで書いてLuaのコードを出力するツール。 既存Luaコードに対しては型定義ファイルで対応し、TypeScriptを使った型安全とIDEサポートを得た状態でLuaのコードを生成できる。
  • 1