mirror of https://github.com/axmolengine/axmol.git
Merge pull request #10048 from dabingnn/v3_updateReleaseNotes
V3 update release notes
This commit is contained in:
commit
05b59d0ef3
|
@ -3,7 +3,6 @@
|
||||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
||||||
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
|
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
|
||||||
|
|
||||||
- [cocos2d-x v3.4 Release Notes](#cocos2d-x-v34-release-notes)
|
|
||||||
- [Misc Information](#misc-information)
|
- [Misc Information](#misc-information)
|
||||||
- [Requirements](#requirements)
|
- [Requirements](#requirements)
|
||||||
- [Runtime Requirements](#runtime-requirements)
|
- [Runtime Requirements](#runtime-requirements)
|
||||||
|
@ -16,12 +15,15 @@
|
||||||
- [How to start a new game](#how-to-start-a-new-game)
|
- [How to start a new game](#how-to-start-a-new-game)
|
||||||
- [v3.4rc1](#v34rc1)
|
- [v3.4rc1](#v34rc1)
|
||||||
- [Highlights of v3.4rc1](#highlights-of-v34rc1)
|
- [Highlights of v3.4rc1](#highlights-of-v34rc1)
|
||||||
- [Adding 3D rendering support for 2D objects](#adding-3d-rendering-support-for-2d-objects)
|
- [Features in detail](#features-in-detail)
|
||||||
|
- [3D rendering support for 2D objects](#3d-rendering-support-for-2d-objects)
|
||||||
|
- [Culling is now an options by CC_USE_CULLING macro](#culling-is-now-an-options-by-cc_use_culling-macro)
|
||||||
|
- [Bugs fixed in v3.4rc1](#bugs-fixed-in-v34rc1)
|
||||||
- [v3.4rc0](#v34rc0)
|
- [v3.4rc0](#v34rc0)
|
||||||
- [Bugs fixed in v3.4rc0](#bugs-fixed-in-v34rc0)
|
- [Bugs fixed in v3.4rc0](#bugs-fixed-in-v34rc0)
|
||||||
- [v3.4beta0](#v34beta0)
|
- [v3.4beta0](#v34beta0)
|
||||||
- [Highlights of v3.4beta0](#highlights-of-v34beta0)
|
- [Highlights of v3.4beta0](#highlights-of-v34beta0)
|
||||||
- [Features in detail](#features-in-detail)
|
- [Features in detail](#features-in-detail-1)
|
||||||
- [Create Sprite3D asynchronously](#create-sprite3d-asynchronously)
|
- [Create Sprite3D asynchronously](#create-sprite3d-asynchronously)
|
||||||
- [Frustum culling](#frustum-culling)
|
- [Frustum culling](#frustum-culling)
|
||||||
- [Use less resources to create ui::CheckBox and ui::Slider](#use-less-resources-to-create--uicheckbox-and-uislider)
|
- [Use less resources to create ui::CheckBox and ui::Slider](#use-less-resources-to-create--uicheckbox-and-uislider)
|
||||||
|
@ -126,7 +128,12 @@ Please refer to this document: [ReadMe](../README.md)
|
||||||
# v3.4rc1
|
# v3.4rc1
|
||||||
|
|
||||||
##Highlights of v3.4rc1
|
##Highlights of v3.4rc1
|
||||||
|
* C++: added CC_USE_CULLING macro to control if enable auto culling or not
|
||||||
|
* FileUtils::fullPathForFilename will return empty string when file can not be found
|
||||||
|
* VertexBuffer&IndexBuffer: allow setting usage(GL_STATIC_DRAW or GL_DYNAMIC_DRAW) in create method
|
||||||
|
* Renderer: 3D rendering support for 2d objects
|
||||||
|
|
||||||
|
##Features in detail
|
||||||
###3D rendering support for 2D objects
|
###3D rendering support for 2D objects
|
||||||
This feature enables Sprite, Label, Particle to be rendered in 3D space by adding them as children of Sprite3D or Billboard. You can achieve effects like blob shadow, 3D particle, Visual damage number popups
|
This feature enables Sprite, Label, Particle to be rendered in 3D space by adding them as children of Sprite3D or Billboard. You can achieve effects like blob shadow, 3D particle, Visual damage number popups
|
||||||
```c++
|
```c++
|
||||||
|
@ -135,6 +142,17 @@ auto label = Label::create();
|
||||||
label->setString("+100");
|
label->setString("+100");
|
||||||
billboard->addChild(label);
|
billboard->addChild(label);
|
||||||
```
|
```
|
||||||
|
###Culling is now an options by CC_USE_CULLING macro
|
||||||
|
Culling is an important features in cocos2d-x v3.x, but some developer may not want to use culling when all of the scene exist in one screen. A macro `CC_USE_CULLING` in `CCConfig.h` can be used to enable or disable culling.
|
||||||
|
|
||||||
|
##Bugs fixed in v3.4rc1
|
||||||
|
* DrawNode: fix random crash because of init opengl buffer wrongly
|
||||||
|
* DrawNode: drawPoints() can not set ponit size
|
||||||
|
* EventDispatcher: crash if adding/removing event listeners and dispatching event in event callback function
|
||||||
|
* GLProgramState: may cause GL_INVALID_VALUE error at start up on Android
|
||||||
|
* LUA: 0x80000000 can not be converted by lua_tonumber correctly on some devices
|
||||||
|
* PhysicsBody: can't get correct position in the same frame of adding PhysicsBody to PhysicsWorld
|
||||||
|
* UI: fix crash when navigation controller is null
|
||||||
|
|
||||||
# v3.4rc0
|
# v3.4rc0
|
||||||
##Bugs fixed in v3.4rc0
|
##Bugs fixed in v3.4rc0
|
||||||
|
@ -150,9 +168,6 @@ billboard->addChild(label);
|
||||||
# v3.4beta0
|
# v3.4beta0
|
||||||
|
|
||||||
## Highlights of v3.4beta0
|
## Highlights of v3.4beta0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Features in detail
|
## Features in detail
|
||||||
|
|
||||||
### Create Sprite3D asynchronously
|
### Create Sprite3D asynchronously
|
||||||
|
|
Loading…
Reference in New Issue