[renpy] 폴더 내의 이미지를 등록하는 법

2021. 2. 25. 17:59

원래 그렇게 안많을줄 알고 일일히 renpy 코드로 쓰려고 했으ㄴㅏ.... 그건 나의 오산이었다

lemmasoft.renai.us/forums/viewtopic.php?t=27114

 

How do I use the Defining Automatic Images Code? - Lemma Soft Forums

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section. Forum rules This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFoun

lemmasoft.renai.us

여기서 init python으로 코드를 작성하면 된다고 나와있길래 해봤음!

init python hide:
    for file in renpy.list_files():
        if file.startswith('images/bg/start'): 
            if file.endswith('.png'):
                name = file.replace('images/bg/','').replace('/bg_', '_').replace('.png','')
                name='bg_'+name
                renpy.image(name, Image(file))
                continue
            continue

원래 파일 경로가 images/bg/start{숫자}/bg_{숫자}.png로 라서 저 코드를 이용하면

bg_start#_#가 된다

 

임시저장글이 두개 있는데..성실한 미래의 내가 쓰겠지 싶음ㅋㅋㄹㅃㅃ 

BELATED ARTICLES

more