53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| /*
 | |
| 文件名:5_Inventory.nut
 | |
| 路径:User/UI/Window/5_Inventory.nut
 | |
| 创建日期:2025-01-02	12:37
 | |
| 文件用途: 背包窗口
 | |
| */
 | |
| 
 | |
| class _Inventory extends Yosin_Window {
 | |
| 
 | |
|     item = null;
 | |
|     dressUpTitleBtn = null;
 | |
|     petTitleBtn = null;
 | |
|     stoneTitleBtn = null;
 | |
| 
 | |
|     constructor(gObjectId, gX, gY, gWidth, gHeight, gTitleH) {
 | |
|         base.constructor(gObjectId, gX, gY, gWidth, gHeight, gTitleH);
 | |
| 
 | |
|         // local title = Yosin_TopTitle(gWidth, gHeight, "装备栏(I)");
 | |
|         // AddUIChild(title);
 | |
| 
 | |
|         local item2 = Yosin_EmeStretch(100, 100, 80, 25, "sprite/interface/lenheartwindowcommon.img", 160);
 | |
|         Addchild(item2);
 | |
| 
 | |
|         //注册控件
 | |
|         RegisterWidget();
 | |
|     }
 | |
| 
 | |
|     function RegisterWidget() {
 | |
| 
 | |
|         //, "装扮", "宠物", "护石"
 | |
|         local titlesBtn = Yosin_RowMoreTitleBtn(10, 25, ["物品栏"]);
 | |
|         AddUIChild(titlesBtn);
 | |
| 
 | |
|         titlesBtn.LBDownOnClick = function(btns, index) {
 | |
| 
 | |
|         };
 | |
| 
 | |
| 
 | |
|         local item = Yosin_SplicingButton(10, 50, 80, 25, "sprite/interface/lenheartwindowcommon.img", 160, true, false);
 | |
|         AddUIChild(item);
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
|     }
 | |
| 
 | |
|     //逻辑入口
 | |
|     function Proc(Dt) {
 | |
|         SyncPos(X, Y);
 | |
|         base.Proc(Dt);
 | |
|     }
 | |
| 
 | |
| } |