【cocos creator】下拉框

ops/2024/11/26 17:28:58/

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/ops/136881.html

相关文章

【Spring Boot】# 使用@Scheduled注解无法执行定时任务

1. 前言 在 Spring Boot中&#xff0c;使用Scheduled注解来定义定时任务时&#xff0c;定时任务不执行&#xff1b;或未在规定时间执行。 import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component;Component public c…

Python 爬虫从入门到(不)入狱学习笔记

爬虫的流程&#xff1a;从入门到入狱 1 获取网页内容1.1 发送 HTTP 请求1.2 Python 的 Requests 库1.2 实战&#xff1a;豆瓣电影 scrape_douban.py 2 解析网页内容2.1 HTML 网页结构2.2 Python 的 Beautiful Soup 库 3 存储或分析数据&#xff08;略&#xff09; 一般爬虫的基…

【MATLAB源码-第223期】基于matlab的Massive-MIMO Vblast检测比较,对比ZF ZF-SIC MMSE MMSE-SIC四种算法。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 无线通信系统的发展极大地推动了现代通信技术的进步&#xff0c;从移动通信到无线局域网&#xff0c;甚至是物联网&#xff0c;均依赖于无线通信系统的高效和可靠性。在无线通信系统中&#xff0c;核心目标是实现数据的可靠传…

2024年11月最新版Adobe PhotoShop(26.0)中文版下载

点击下载 Adobe PhotoShop 是一款功能强大的应用程序&#xff0c;已被各种公司、专业艺术家、设计和创作者广泛使用。该程序允许您创建、编辑和合成多层、蒙版和多种颜色模型&#xff08;包括 RGB、专色、CMYK 等&#xff09;的光栅图像。 Adobe Adobe PhotoShop 主要功能&…

AIVA 技术浅析(三):如何通过CNN捕捉音乐作品中的细节和模式

为了更深入地理解AIVA&#xff08;Artificial Intelligence Virtual Artist&#xff09;如何利用卷积神经网络&#xff08;CNN&#xff09;捕捉音乐作品中的细节和模式&#xff0c;并生成高质量的音乐&#xff0c;以下是个人理解与浅析&#xff1a; 1. 数据收集与预处理 1.1 …

Oracle 数据库 23ai 新特性: Schema Annotations

Data Use Case Domain &#xff08;数据用例域&#xff09;和 Schema Annotation 都属于 Application Data Usage 的范畴。但Data Use Case Domain比Schema Annotation要简单得多&#xff0c;也重要得多。因此我们先讲解简单的。 本文介绍23ai的新特性&#xff0c;Schema Anno…

数据结构之一:复杂度

相关代码&#xff1a;SData/test_22/main.c Hera_Yc/bit_C_学习 - 码云 - 开源中国 数据结构&#xff1a;在内存当中存储、组织数据的方式。&#xff08;顺序表、链表、栈、队列、树等&#xff09;。 算法&#xff1a;与数据结构配合使用&#xff0c;是对数据的处理。&#…

进程间通信5:信号

引入 我们之前学习了信号量&#xff0c;信号量和信号可不是一个东西&#xff0c;不能混淆。 信号是什么以及一些基础概念 信号是一种让进程给其他进程发送异步消息的方式 信号是随时产生的&#xff0c;无法预测信号可以临时保存下来&#xff0c;之后再处理信号是异步发送的…