py_cocos2d-0.6.0

所属分类:游戏
开发工具:Python
文件大小:4703KB
下载次数:0
上传日期:2021-03-06 17:23:44
上 传 者tanjiwu
说明:  大名顶顶的二维游戏编程cocoos2d的 python 版本.很值得有兴趣的下载
(Big name top two-dimensional game programming cocoos2d Python version. It is worth downloading)

文件列表:
cocos2d-0.6.0\CHANGELOG (12323, 2014-03-24)
cocos2d-0.6.0\INSTALL (2822, 2014-03-24)
cocos2d-0.6.0\LICENSE (1618, 2012-08-12)
cocos2d-0.6.0\LICENSE.euclid (26521, 2008-04-27)
cocos2d-0.6.0\LICENSE.grossini (14312, 2008-05-09)
cocos2d-0.6.0\LICENSE.python_interpreter (1523, 2008-04-26)
cocos2d-0.6.0\MANIFEST.in (501, 2012-08-12)
cocos2d-0.6.0\NEWS.txt (1492, 2014-03-24)
cocos2d-0.6.0\PKG-INFO (5118, 2014-03-24)
cocos2d-0.6.0\setup.cfg (64, 2014-03-24)
cocos2d-0.6.0\setup.py (2268, 2014-03-24)
cocos2d-0.6.0\benchmarks\collision\a0_benchmark_time_per_frame.py (11166, 2014-03-19)
cocos2d-0.6.0\benchmarks\collision\a0_bouncing_balls_Model.py (7901, 2014-03-19)
cocos2d-0.6.0\benchmarks\collision\ball32.png (817, 2011-08-12)
cocos2d-0.6.0\cocos\batch.py (4622, 2014-03-24)
cocos2d-0.6.0\cocos\camera.py (5456, 2014-03-24)
cocos2d-0.6.0\cocos\cocosnode.py (30554, 2014-03-24)
cocos2d-0.6.0\cocos\collision_model.py (28508, 2014-03-24)
cocos2d-0.6.0\cocos\compat.py (2135, 2014-03-24)
cocos2d-0.6.0\cocos\custom_clocks.py (16418, 2014-03-24)
cocos2d-0.6.0\cocos\director.py (26607, 2014-03-24)
cocos2d-0.6.0\cocos\draw.py (14442, 2014-03-24)
cocos2d-0.6.0\cocos\euclid.py (73528, 2014-03-19)
cocos2d-0.6.0\cocos\framegrabber.py (6706, 2014-03-24)
cocos2d-0.6.0\cocos\gl_framebuffer_object.py (3557, 2014-03-24)
cocos2d-0.6.0\cocos\grid.py (15309, 2014-03-24)
cocos2d-0.6.0\cocos\menu.py (27168, 2014-03-24)
cocos2d-0.6.0\cocos\particle.py (19278, 2014-03-24)
cocos2d-0.6.0\cocos\particle_systems.py (10965, 2014-03-24)
cocos2d-0.6.0\cocos\path.py (2798, 2014-03-24)
cocos2d-0.6.0\cocos\rect.py (11375, 2014-03-24)
cocos2d-0.6.0\cocos\scene.py (6840, 2014-03-24)
cocos2d-0.6.0\cocos\shader.py (10541, 2014-03-24)
cocos2d-0.6.0\cocos\skeleton.py (15357, 2014-03-24)
cocos2d-0.6.0\cocos\sprite.py (13181, 2014-03-24)
cocos2d-0.6.0\cocos\text.py (9659, 2014-03-24)
cocos2d-0.6.0\cocos\tiles.py (51009, 2014-03-24)
cocos2d-0.6.0\cocos\utils.py (2894, 2014-03-24)
cocos2d-0.6.0\cocos\wired.py (2498, 2014-03-24)
... ...

======= cocos2d ======= | A framework for building 2D games, demos, and other graphical/interactive applications. | Draws using OpenGL, which is hardware accelerated. | It provides some conventions and classes to help you structure a "scene based application". | A cocos2d application consists of several scenes, and a workflow connecting the different scenes. | It provides you with a "director" (a singleton) which handles that workflow between scenes. | Each scene is composed of an arbitrary number of layers; | layers take care of drawing to the screen (using the pyglet and OpenGL APIs), handling events and in general contain all of the game/application logic. cocos2d simplifies the game development in these areas: * Flow control: Manage the flow control between different scenes in an easy way * Sprites: Fast and easy sprites * Actions: Just tell sprites what you want them to do. Composable actions like move, rotate, scale and much more * Effects: Effects like waves, twirl, lens and much more * Tiled Maps: Support for rectangular and hexagonal tiled maps * Collision: Basic pure python support for collisions * Transitions: Move from scene to scene with style * Menus: Built in classes to create menus * Text Rendering: Label and HTMLLabel with action support * Built-in Python Interpreter: For debugging purposes * Acces to OpenGL functionality * and much more!http://cocos2d.org Requirements ------------ Software: * python 2.6, 2.7 or 3.3+ * pyglet 1.2 or newer (http://www.pyglet.org) * Linux, Windows or Mac OS/X Hardware: * To execute some effects you will need a video card with the: GL_EXT_framebuffer_object extension. Installing ---------- Being a pure python package the usual options are available; you can look at the INSTALL file for some details Learning cocos2d ---------------- * go to the online tuturials / documentation page: http://cocos2d.org/doc.html you will find: . the Programming Guide . the API Reference . some tutorial videos The tutorials are included in the source package or can be download from: http://code.google.com/p/los-cocos/downloads/list * Lot of miniprograms that demostrates the available objects and posible actions. There are a great starting point while learning and experimenting with cocos: you find a sample with the object that interest you exercising the features that you need, read the code, run, modify and re-run to experiment. Also, handy to know what is available in cocos: run all the tests and by looking at the code you know what to look at in the docs. You can find them at the test directory in the source distribution. After unpacking, to run the tests you can do $ cd test $ python test_*.py * more complex sample programs You can find it in the samples directory in the source distribution, and the most complex in subdrectories there, including a presentation done with Cocos himself. After unpacking, to run the samples you can do $ cd samples $ python sample_name.py Do you have any doubt ? http://groups.google.com/group/cocos-discuss Did you find any bug ? http://groups.google.com/group/cocos-discuss http://code.google.com/p/los-cocos/issues/list

近期下载者

相关文件


收藏者