【cocos creator】下拉框

server/2024/11/29 0:59:26/

https://download.csdn.net/download/K86338236/90038176

请添加图片描述

请添加图片描述


const { ccclass, property } = cc._decorator;type DropDownOptionData = {optionString?: string,optionSf?: cc.SpriteFrame
}
type DropDownItemData = {label: cc.Label,sprite: cc.Sprite,toggle: cc.Toggle
}@ccclass()
export default class DropDown extends cc.Component {@property(cc.Node)private touchNode: cc.Node = undefined;@property(cc.Node)private arrow: cc.Node = undefined;@property(cc.ScrollView)private template: cc.ScrollView = undefined;@property(cc.Node)private optionItem: cc.Node = undefined;@property(cc.Node)private spriteCaption: cc.Sprite = undefined;@property(cc.Label)private labelCaption: cc.Label = undefined;private optionDatas: DropDownOptionData[] = [];chooseIndex = -1;showTemplate = falseprotected start(): void {if (this.touchNode) {this.touchNode.on(cc.Node.EventType.TOUCH_START, this.onTouchStart, this);//@ts-ignorethis.touchNode._touchListener.setSwallowTouches(false);//取消触摸节点的穿透事件}this.reset()let data = [{ optionString: "11" }, { optionString: "22" }]this.init(data)}reset() {this.showTemplate = falsethis.spriteCaption.spriteFrame = null;this.labelCaption.string = "";this.chooseIndex = -1this.template.node.active = this.showTemplate;let content = this.template.contentcontent.children.forEach(element => {element.active = false});this.optionDatas = [];this.upDateTemplate()}init(data: DropDownOptionData[]) {this.optionDatas = datathis.upDateTemplate()}chooseItem(event, data) {let number = Number(data)this.chooseIndex = isNaN(number) ? -1 : numberthis.updateChoose()this.hideTample()}upDateTemplate() {let content = this.template.contentlet item = this.optionItemcontent.children.forEach(element => {element.active = false});for (let i = 0; i < this.optionDatas.length; i++) {const element = this.optionDatas[i];let node = content.children[i]if (!node) {node = cc.instantiate(item)node.parent = content;}if (!node) content;let lable = node.getComponentInChildren(cc.Label)let sprite = node.getComponentInChildren(cc.Sprite)if (lable) lable.string = element.optionString || ""if (sprite) sprite.spriteFrame = element.optionSf || nullif (lable || sprite) node.active = true;node.getChildByName("choose").active = i == this.chooseIndex;node.getComponent(cc.Button).clickEvents[0].customEventData = i + "";}if (this.chooseIndex >= 0) {const chooseData = this.optionDatas[this.chooseIndex];if (this.spriteCaption) this.spriteCaption.spriteFrame = chooseData.optionSf || nullif (this.labelCaption) this.labelCaption.string = chooseData.optionString || ""}this.template.node.height = Math.min(cc.winSize.height / 2 + this.node.y, this.optionDatas.length * this.optionItem.height)this.template.node.y = this.node.y - this.node.height / 2this.template.node.x = this.node.xthis.template.node.width = this.node.width}updateChoose() {let content = this.template.contentfor (let i = 0; i < this.optionDatas.length; i++) {let node = content.children[i]if (!node) returnnode.getChildByName("choose").active = i == this.chooseIndex;}if (this.chooseIndex >= 0) {const chooseData = this.optionDatas[this.chooseIndex];if (this.spriteCaption) this.spriteCaption.spriteFrame = chooseData.optionSf || nullif (this.labelCaption) this.labelCaption.string = chooseData.optionString || ""}}onOptionClick() {this.showTemplate = !this.showTemplatethis.updateShowTamplate()}showTample() {this.showTemplate = truethis.updateShowTamplate()}hideTample() {this.showTemplate = falsethis.updateShowTamplate()}updateShowTamplate() {this.template.node.active = this.showTemplate;this.arrow.scaleY = this.showTemplate ? -1 : 1}onTouchStart() {this.hideTample()}
}

http://www.ppmy.cn/server/145773.html

相关文章

JVM调优篇之JVM基础入门AND字节码文件解读

目录 Java程序编译class文件内容常量池附录-访问标识表附录-常量池类型列表 Java程序编译 Java文件通过编译成class文件后&#xff0c;通过JVM虚拟机解释字节码文件转为操作系统执行的二进制码运行。 规范 Java虚拟机有自己的一套规范&#xff0c;遵循这套规范&#xff0c;任…

行为型模式-命令模式

命令模式&#xff08;Command Pattern&#xff09;是一种行为设计模式&#xff0c;它将请求封装为一个对象&#xff0c;从而使你可以用不同的请求、队列或者日志来参数化对象。命令模式允许请求的发送者与接收者完全解耦。 关键组成部分 Command&#xff08;命令接口&#xff0…

Git | 通过Gihub+git组合来学习理解团队项目合作中分支的创建、合并、删除操作

分支操作 Gihubgit步骤 1: 创建新的 GitHub 仓库步骤 2: 克隆仓库到本地步骤 3:创建并切换到新分支&#xff1a;步骤 4:修改文件并提交更改&#xff1a;【包含**查看改动提交更改**】步骤 5:将本地分支推送到 GitHub&#xff1a;步骤 6:合并分支步骤 7:删除本地分支和远程分支步…

【探寻密码的奥秘】-001:解开密码的神秘面纱

目录 1、密码学概述1.1、概念1.2、目的1.3、应用场景 2、密码学的历史2.1、第一时期&#xff1a;古代密码时代2.2、第二时期&#xff1a;机械密码时代2.3、第三时期&#xff1a;信息密码时代2.4、第四时期&#xff1a;现代密码时代 3、密码学的基本概念3.1、一般通信系统3.2、保…

linux安全管理-会话安全

文章目录 1 设置命令行界面超时退出2 配置终端登录失败策略3 配置 SSH 登录失败策略 1 设置命令行界面超时退出 1、检查内容 检查操作系统是否设置命令行界面超时退出。 2、配置要求 操作系统设置命令行界面超时退出。 3、配置方法 配置命令行界面超时时间&#xff0c;编辑/et…

TCP/IP学习笔记

TCP\IP从实际应用的五层结构开始&#xff0c;自顶而下的去分析每一层。 TCP/IP五层架构概述 学术上面是TCP/IP四层架构&#xff0c;OSI/ISO是七层架构&#xff0c;实际中使用的是TCP/IP五层架构。 数据链路层 ICMP数据包分析 Wireshark抓包分析ICMP协议_wireshark抓ping包分析…

Leetcode 3366. Minimum Array Sum

Leetcode 3366. Minimum Array Sum 1. 解题思路2. 代码实现 题目链接&#xff1a;3366. Minimum Array Sum 1. 解题思路 这一题思路上倒是非常的直接&#xff0c;就是一个动态规划&#xff0c;我们考察每一个元素上面是否要进行操作&#xff0c;进行几个操作&#xff0c;然后…

Midjourney以图生图攻略,6个案例以学代练

哈喽&#xff0c;朋友们&#xff0c;今天给以6个案例来大家介绍Midjourney以图生图的功能。 首先我们先了解一下以图生图的原理&#xff1a;当你上传一张图片时&#xff0c;它会通过深度学习算法分析图片的特征&#xff0c;并生成一张新的图片&#xff0c;这张新图片会保留原始…