Skip to content

格式

typescript
NetConversation.FindEntity(entityID)

所属类: NetConversation

描述

根据entityID查找实体。

参数

参数名类型描述
entityIDnumber实体ID

返回值

类型描述
NetEntity实体

代码示例

typescript
NetServer.on_converastion_connect = async (conv: NetConversation) => {
    let entity = conv.FindEntity("entityID");
}