Files
netease-bedrock-wiki/.github/ISSUE_TEMPLATE/issue-template-sdk.yml
MCNeteaseDevs dd3d05715c Add developer info field to issue template
Added a textarea for developer name/contact information.
2025-12-19 10:34:42 +08:00

58 lines
1.6 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: SDK文档修改
description: 一条SDK修改对应一条Issue可以修改参数描述、接口备注等
title: "[sdk] "
labels: [sdk]
body:
- type: textarea
id: sdk_name
attributes:
label: 接口名称/链接
description: 请填写接口的名称或链接
placeholder: |
例如: CreateUI
validations:
required: true
- type: dropdown
id: sdk_type
attributes:
label: 接口类型
description: 接口的类型
options:
- 服务端
- 客户端
- 双端
validations:
required: true
- type: textarea
id: modifications
attributes:
label: 修改内容
description: 详细描述修改后的内容
placeholder: |
例如:
# 以CreateUI为例
1、参数修改
createParams的说明修改为创建UI的参数会传到UI类的_init_函数中详细请看下方备注说明
2、备注修改
createParams中的bindEntityId参数描述修改为意为绑定实体的id。若不传入该键值对或值为None则会以isHud = 0来处理该UI界面。血量显示模组可以使用该参数。
validations:
required: true
- type: textarea
id: other_content
attributes:
label: 其他补充信息
description: 如有其他补充信息请填写在这里
validations:
required: false
- type: textarea
id: developer_info
attributes:
label: 开发者名称/联系方式
description: 请填写您的开发者名称或联系方式QQ将会用于奖励发放等
validations:
required: false