Skip to main content

emit 调用物品事件和脚本

emit

类型: MethodDeclaration

所属类: Item

定义位置: actor.ts

描述

调用物品事件和脚本

参数 type: 物品事件类型

参数 actor: 事件触发角色

返回值:生成的事件处理器

参数

参数名类型描述默认值
typestring--
actorActor--

返回值

类型: EventHandler \| undefined

生成的事件处理器

源代码

位置: 第 4207 行

public emit(type: string, actor?: Actor): EventHandler | undefined {
const event = this.callEvent(type, actor)
this.script.emit(type, this)
return event
}

文档生成时间:2025/7/7 12:07:06