-
-
Notifications
You must be signed in to change notification settings - Fork 185
Release notes version 0.2.4
lordloki edited this page Sep 19, 2018
·
17 revisions
WORK IN PROGRESS
Photo release
- Rename
async
parameter fromLibLoad
as is a reserved word in Python 3.7. Now is namedasynchronous
. For example, you can use it this way now:
bge.logic.LibLoad(path, 'Scene', asynchronous=True)
See also: 1959ed2
- Cleanup
KX_NavMeshObject.[h/cpp]
. (see b2293e9) - Cleanup
KX_SteeringActuator.[h/cpp]
. (see 615cdb0) - Use
std::vector
for path instead of float array for nav mesh. (see 86cf416) - Use slot to store information around display arrays in
RAS_Deformer
. (see 404070c) - Cleanup mesh layers info. (see 39ae7f9)
- Replace display array modification flag by update client/server. (see 87a7e65)
- Cleanup
KX_Scene.[h/cpp]
. (see 1973f22) - Remove Hungarian notation. (see 555e650)
- Remove unused
m_rootnode
member inKX_Scene
. (see a82e220) - Remove
m_blenderGroupObject
inKX_GameObject
. (see 71dcfe6)
- Fix channel update of duplicated armatures. (see eb0374a)