当前位置: 首页>>代码示例>>Python>>正文


Python Property.has_children方法代码示例

本文整理汇总了Python中property_parser.Property.has_children方法的典型用法代码示例。如果您正苦于以下问题:Python Property.has_children方法的具体用法?Python Property.has_children怎么用?Python Property.has_children使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在property_parser.Property的用法示例。


在下文中一共展示了Property.has_children方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: flag_random

# 需要导入模块: from property_parser import Property [as 别名]
# 或者: from property_parser.Property import has_children [as 别名]
def flag_random(inst, res: Property):
    """Randomly is either true or false."""
    if res.has_children():
        chance = res['chance', '100']
        seed = res['seed', '']
    else:
        chance = res.value
        seed = ''

    # Allow ending with '%' sign
    chance = utils.conv_int(chance.rstrip('%'), 100)

    random.seed('random_chance_{}:{}_{}_{}'.format(
        seed,
        inst['targetname', ''],
        inst['origin'],
        inst['angles'],
    ))
    return random.randrange(100) < chance
开发者ID:Coolasp1e,项目名称:BEE2.4,代码行数:21,代码来源:randomise.py

示例2: write_sound

# 需要导入模块: from property_parser import Property [as 别名]
# 或者: from property_parser.Property import has_children [as 别名]
def write_sound(file, snds: Property, pack_list, snd_prefix='*'):
    """Write either a single sound, or multiple rndsound.

    snd_prefix is the prefix for each filename - *, #, @, etc.
    """
    if snds.has_children():
        file.write(' "rndwave"\n  {\n')
        for snd in snds:
            file.write(
                '  "wave" "{sndchar}{file}"\n'.format(
                    file=snd.value,
                    sndchar=snd_prefix,
                )
            )
            pack_list.add('sound/' + snd.value.casefold())
        file.write('  }\n')
    else:
        file.write(
            ' "wave" "{sndchar}{file}"\n'.format(
                file=snds.value,
                sndchar=snd_prefix,
            )
        )
        pack_list.add('sound/' + snds.value.casefold())
开发者ID:SpyyZ158,项目名称:BEE2.4,代码行数:26,代码来源:vrad.py


注:本文中的property_parser.Property.has_children方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。