Difficult-Rocket/docs/configes sample/in_file_config.json5
2021-01-28 22:50:28 +08:00

57 lines
1.5 KiB
Plaintext
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.

{
'Game_threads': {
'orbit_demo': {
'ship_info': {
'mass': 'basic_config:basic_number',
'force': 'basic_config:basic_force'
}
}
},
'client': {
'self.parts': {
'ship name': {
'brain': [
'part type',
// part type
'turn',
// type:float
'is mirror',
// type:bool
[
'basic_config.basic_poi'
]
/*rua 我用中文了!
飞船的"大脑"(直译)没有"特殊值"
也就是说"大脑"只是一个"壳"(服务端同理)
只会计算位置、方向之类的统一数据
需要改的话发issue 嘿嘿
*/
],
'part ID': [
// part id
'part type',
// part type
'turn',
// type:float 0 is up clockwise
'is mirror',
// type:bool
[
'basic_config.basic_poi'
],
{
'special value 1': 'xxx',
'special value 2': 'xxx'
/*继续继续
这里的“特殊值”指的是
除去上面写的类型、角度、镜像、位置之外的其他属性
比如燃料罐的燃料量、太阳能板的打开状态
需要渲染一些特殊项的时候
比如对接之后传输燃料、渲染太阳能板
的时候可以用到
*/
}
]
}
}
}
}