实例介绍
Coco2d-x节奏大师源码,可直接运行!
【实例截图】
【核心代码】
Rhythm-master
└── Rhythm-master
├── 1.png
├── 2.gif
├── README.md
└── Rhythm
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── AppMacros.h
│ ├── Game4Key.cpp
│ ├── Game4Key.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── VisibleRect.cpp
│ └── VisibleRect.h
├── proj.android
│ ├── AndroidManifest.xml
│ ├── ant.properties
│ ├── build_native.sh
│ ├── build.xml
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── README.md
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ └── strings.xml
│ └── src
│ └── com
│ └── MyCompany
│ └── Rhythm
│ └── Rhythm.java
├── proj.ios
│ ├── AppController.h
│ ├── AppController.mm
│ ├── Default@2x.png
│ ├── Default-568h@2x.png
│ ├── Default.png
│ ├── Icon-114.png
│ ├── Icon-120.png
│ ├── Icon-144.png
│ ├── Icon-152.png
│ ├── Icon-57.png
│ ├── Icon-72.png
│ ├── Icon-76.png
│ ├── Info.plist
│ ├── main.m
│ ├── Prefix.pch
│ ├── Rhythm.xcodeproj
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcuserdata
│ │ │ └── zeroyang.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ └── xcuserdata
│ │ └── zeroyang.xcuserdatad
│ │ └── xcschemes
│ │ ├── Rhythm.xcscheme
│ │ └── xcschememanagement.plist
│ ├── RootViewController.h
│ └── RootViewController.mm
├── proj.linux
│ ├── build.sh
│ ├── main.cpp
│ └── Makefile
├── proj.mac
│ ├── AppController.h
│ ├── AppController.mm
│ ├── en.lproj
│ │ ├── InfoPlist.strings
│ │ └── MainMenu.xib
│ ├── Icon.icns
│ ├── Info.plist
│ ├── main.m
│ ├── Prefix.pch
│ └── Rhythm.xcodeproj
│ └── project.pbxproj
├── proj.win32
│ ├── main.cpp
│ ├── main.h
│ ├── Rhythm.sln
│ ├── Rhythm.vcxproj
│ ├── Rhythm.vcxproj.filters
│ └── Rhythm.vcxproj.user
├── proj.wp8
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ └── Tiles
│ │ ├── FlipCycleTileLarge.png
│ │ ├── FlipCycleTileMedium.png
│ │ ├── FlipCycleTileSmall.png
│ │ ├── IconicTileMediumLarge.png
│ │ └── IconicTileSmall.png
│ ├── pch.cpp
│ ├── pch.h
│ ├── Rhythm.cpp
│ ├── Rhythm.h
│ ├── Rhythm.sln
│ ├── Rhythm.vcxproj
│ ├── Rhythm.vcxproj.filters
│ └── WMAppManifest.xml
├── proj.wp8-xaml
│ ├── Rhythm
│ │ ├── Rhythm
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cs
│ │ │ ├── Assets
│ │ │ │ ├── AlignmentGrid.png
│ │ │ │ ├── ApplicationIcon.png
│ │ │ │ └── Tiles
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ └── IconicTileSmall.png
│ │ │ ├── EditBox.xaml
│ │ │ ├── EditBox.xaml.cs
│ │ │ ├── LocalizedStrings.cs
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ ├── Properties
│ │ │ │ ├── AppManifest.xml
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── WMAppManifest.xml
│ │ │ ├── Resources
│ │ │ │ ├── AppResources.Designer.cs
│ │ │ │ └── AppResources.resx
│ │ │ ├── Rhythm.csproj
│ │ │ ├── Rhythm.csproj.user
│ │ │ └── SplashScreenImage.jpg
│ │ └── RhythmComponent
│ │ ├── pch.cpp
│ │ ├── pch.h
│ │ ├── RhythmComponent.vcxproj
│ │ └── RhythmComponent.vcxproj.filters
│ └── Rhythm.sln
└── Resources
├── 960_panle.plist
├── 960_panle.png
├── anim
│ ├── key_press.ExportJson
│ ├── key_press.plist
│ └── key_press.png
├── app.icf
├── background.plist
├── background.png
├── button
│ ├── button.plist
│ └── button.png
├── CloseNormal.png
├── CloseSelected.png
├── development.icf
├── fonts
│ ├── arial.ttf
│ ├── futura-48.fnt
│ ├── futura-48.png
│ ├── jinscore.plist
│ ├── jinscore.png
│ └── Marker Felt.ttf
├── HelloWorld.png
├── images
│ └── fire.png
├── ipad
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ └── HelloWorld.png
├── ipadhd
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ └── HelloWorld.png
├── iphone
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ └── HelloWorld.png
├── music
│ ├── mode_select_02.wav
│ ├── music_select_01.wav
│ └── title_bgm.mp3
├── score.plist
├── score.png
└── song
└── andy
├── andy_4k_ez.imd
├── andy_5k_nm.imd
├── andy.mp3
├── andy.png
└── andy_title_hd.png
50 directories, 149 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论