• 文件配置cocos2dx 滚动条实现


    在改章节中,我们主要介绍文件配置的内容,自我感觉有个不错的建议和大家分享下

    CCSize screenSize = CCDirector::sharedDirector()->getWinSize();
    CCControlSlider *slider = CCControlSlider::create("extensions/sliderTrack.png","extensions/sliderProgress.png" ,"extensions/sliderThumb.png");
    //slider->addTargetWithActionForControlEvents(this, menu_selector(HelloWorld::actionSlider),CCControlEventValueChanged);   事件
    		
    slider->setAnchorPoint(ccp(0.5f, 1.0f));
    		
    slider->setMinimumValue(0.0f); 
    // Sets the min value of range
    		
    slider->setMaximumValue(3.0f); 
    // Sets the max value of range
    		
    slider->setValue(1.0f);
    		
    slider->setPosition(ccp(screenSize.width / 2.0f, 35));
    		
    this->addChild(slider);
        每日一道理
    站在历史的海岸漫溯那一道道历史沟渠:楚大夫沉吟泽畔,九死不悔;魏武帝扬鞭东指,壮心不已;陶渊明悠然南山,饮酒采菊……他们选择了永恒,纵然谄媚诬蔑视听,也不随其流扬其波,这是执著的选择;纵然马革裹尸,魂归狼烟,也要仰天长笑,这是豪壮的选择;纵然一身清苦,终日难饱,也愿怡然自乐,躬耕陇亩,这是高雅的选择。在一番选择中,帝王将相成其盖世伟业,贤士迁客成其千古文章。

        如果找不到CCControlSlider类 那就

        #include "cocos-ext.h"
    USING_NS_CC_EXT;

        如果没法导入此文件 那就

        项下目配置

        附加含包录目   $(SolutionDir)extensions
    附加依附项  libExtensions.lib

    文章结束给大家分享下程序员的一些笑话语录: 现在社会太数字化了,所以最好是有一个集很多功能于一身的设备!

  • 相关阅读:
    sklearn 数据预处理1: StandardScaler
    Gitlab利用Webhook实现Push代码后的Jenkins自动构建
    Shell脚本-自动化部署WEB
    Jenkins可用环境变量以及使用方法
    Docker常用命令
    nginx中root和alias的区别
    gitlab+jenkins=自动化构建
    Spring Boot2.0:使用Docker部署Spring Boot
    Maven内置属性、POM属性
    navicat连接mysql出现Client does not support authentication protocol requested by server解决方案
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3043417.html
Copyright © 2020-2023  润新知