當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。