วันพฤหัสบดีที่ 20 พฤศจิกายน พ.ศ. 2557

Renpy-การใส่ภาพตัวละครในบทสนทนา

แบบภาพเดียว
< ก่อน label start: ใน script.rpy>

 init:
    $ k = Character('boy',
    color="#FCFC68", what_color="#696969",
    window_left_padding=200,
    show_side_image=Image
    ("images/bfight.png",
    xalign=0.0, yalign=1.0)) 

 

แบบเปลี่ยนภาพไปตามความรู้สึก
< ก่อน label start: ใน script.rpy>

init:
     $ t = Character('ครูเอ',
     color="#f14e80", what_color="#696969",
     window_left_padding=200,
     show_side_image=ConditionSwitch(
     "aa == 'g'", "images/gangry.png",
     "aa == 'c'", "images/gcry.png",
     "aa == 'sad'", "images/gsad.png",
     "aa == 'say'", "images/gsay.png",
     "aa == 's'", "images/gsmile.png",
     None, Null(),
     xalign=0.025, yalign=1.0))



 
 
การใช้
<  label start: ใน script.rpy>
 
$ aa = 'say'
 
 
 
ตัวอย่าง
 
แบบภาพเดียว คือ ไม่ว่าพูดอะไรก็ใช้ภาพนี้



แบบเปลี่ยนภาพไปตามความรู้สึก


ไม่มีความคิดเห็น:

แสดงความคิดเห็น