Yardım Slot Sorunu

  • Konuyu açan Konuyu açan MaskesizVEVO
  • Açılış Tarihi Açılış Tarihi
  • Yanıt Yanıt 0
  • Gösterim Gösterim 45
Konu sahibi bu konuda soru soruyor. Sorusu ile ilgili bilgisi olanların yanıtlamasını bekliyor.

MaskesizVEVO

Üye
Üye
Mesaj
357
Çözümler
8
Beğeni
24
Puan
459
Ticaret Puanı
0
eski slotlu pencerede COSTUME_START_INDEX+1 başlığa eşit ama burda koyunca giyilmiyor neden?

item.COSTUME_TYPE_HAIR
item.COSTUME_SLOT_HAIR

deniyorum olmuyor

item

1760283730001.webp


Python:
Genişlet Daralt Kopyala
import uiScriptLocale
import item
import app

COSTUME_START_INDEX = item.COSTUME_SLOT_START

window = {
    "name" : "CostumeWindow",

    "x" : SCREEN_WIDTH - 175 - 140,
    "y" : SCREEN_HEIGHT - 37 - 565,

    "style" : ("movable", "float",),

    "width" : 250,
    "height" : 250,

    "children" :
    (
        {
            "name" : "board",
            "type" : "board",
            "style" : ("attach",),

            "x" : 0,
            "y" : 0,

            "width" : 250,
            "height" : 250,

            "children" :
            (
                ## Title
                {
                    "name" : "TitleBar",
                    "type" : "titlebar",
                    "style" : ("attach",),

                    "x" : 6,
                    "y" : 6,

                    "width" : 130,
                    "color" : "yellow",

                    "children" :
                    (
                        { "name":"TitleName", "type":"text", "x":60, "y":3, "text":uiScriptLocale.COSTUME_WINDOW_TITLE, "text_horizontal_align":"center" },
                    ),
                },

                ## Equipment Slot
                {
                    "name" : "Costume_Base",
                    "type" : "image",

                    "x" : 13,
                    "y" : 38,

                    "image" : "d:/ymir work/ui/public/Slot_Base.sub",

                    "children" :
                    (

                        {
                            "name" : "CostumeSlot",
                            "type" : "slot",

                            "x" : 3,
                            "y" : 3,

                            "width" : 150,
                            "height" : 182,

                            "slot" : (
                                        {"index":COSTUME_START_INDEX+1, "x":3, "y":3, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+2, "x":5, "y":145, "width":32, "height":32},
                                    ),
                        },
                    ),
                },

                ## Equipment Slot
                {
                    "name" : "Costume_Base_1",
                    "type" : "image",

                    "x" : 53,
                    "y" : 38,

                    "image" : "d:/ymir work/ui/public/Slot_Base.sub",

                    "children" :
                    (

                        {
                            "name" : "CostumeSlot",
                            "type" : "slot",

                            "x" : 3,
                            "y" : 3,

                            "width" : 127,
                            "height" : 145,

                            "slot" : (
                                        {"index":COSTUME_START_INDEX+1, "x":3, "y":3, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+2, "x":5, "y":145, "width":32, "height":32},
                                    ),
                        },
                    ),
                },

                ## Equipment Slot
                {
                    "name" : "Costume_Base_2",
                    "type" : "image",

                    "x" : 93,
                    "y" : 38,

                    "image" : "d:/ymir work/ui/public/Slot_Base.sub",

                    "children" :
                    (

                        {
                            "name" : "CostumeSlot",
                            "type" : "slot",

                            "x" : 0,
                            "y" : 0,

                            "width" : 127,
                            "height" : 145,

                            "slot" : (
                                        {"index":item.COSTUME_TYPE_HAIR, "x":0, "y":0, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
                                        # {"index":COSTUME_START_INDEX+2, "x":5, "y":145, "width":32, "height":32},
                                    ),
                        },
                    ),
                },

            ),
        },
    ),
}
 
Geri
Üst