escaco95 / vjassplus

vscode vjassplus extends vscode jass 插件

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

貼吧 gitee源碼 GitHub源碼 Q群,點擊加入

vscode最低版本1.49

common.j 為1.33

使用步骤

  1. 下载安装 visual studio Code
  2. visual studio Code 安装 Jass插件
  3. WE触发器 自定义脚本区 #include "c://dir/any.j"

#include  "c://dir/any.j" // WE触发器    自定义脚本区

any.j

//以下为外部引用触发器的格式
//Main  为触发器名字
//MainAction  为动作函数名 对应T的动作
//MainEvent   为触发函数名 对应T的事件

library Main initializer MainEvent
  // 动作
  function MainAction takes nothing returns nothing
          
  endfunction
  // initializer MainEvent 指定此方法后vjass会自动执行一次,类似事件'地图初始化'
  function MainEvent takes nothing returns nothing
    local trigger mainTrigger = CreateTrigger()
    call TriggerRegisterTimerEventSingle(mainTrigger,0)
    call TriggerAddAction(mainTrigger, function MainAction)
  endfunction
endlibrary

1.6.7

2022年6月5日
include宏路径提示

include-dome

1.6.12

2022年6月13日
新的配置项exclude
已经失效,请使用jass.config.json {"excludes": []}配置

exclude-dome

1.6.1

comment-param

1.6.15

2022年7月28日
dzGetColor颜色

dzGetColor


请我喝奶茶 loveme

一起出份力赞助我开发吧!爱你哟

---star一下吧!---

About

vscode vjassplus extends vscode jass 插件


Languages

Language:Objective-J 49.8%Language:TypeScript 46.3%Language:JavaScript 4.0%