Skip to content

Commit

Permalink
bump to 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
archibate committed Oct 27, 2020
1 parent 9cd1148 commit 9039923
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
33 changes: 18 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changelog
=========

New in 0.0.9
------------

Notable changes:
* Support (experimental) SSAO by `t3.SSAO` node.
* Support deferred shading by using `t3.DeferredMaterial` and `t3.DeferredShading` nodes.
* Set up multi-material ID system, use `t3.objunpackmtls` to separate OBJ by their material.
* Add a variety of nodes, including `t3.GaussianBlur`, `t3.ImgBinaryOp`, `t3.SuperSampling2x2`...
* Support `t3.DynamicMesh` for mesh with dynamic number of face.
* Add `taichi_three.mciso` module, with `MCISO` and `Voxelizer`.
* Support `t3.Skybox` as model and background sampler.
* Support `t3.ModelGroup` for grouped transformations.
* Add `t3.WireframeModel` and `t3.PolyToEdge`.

Minor fixes:
* Make camera buffer update less ad-hoc.
* Fix `t3.readobj` default orientation to be `-xyz`.

New in 0.0.8
------------

Expand Down Expand Up @@ -93,21 +111,6 @@ Other updates:
New in latest master
--------------------

Notable changes:
* Support (experimental) SSAO by `t3.SSAO` node.
* Support deferred shading by using `t3.DeferredMaterial` and `t3.DeferredShading` nodes.
* Set up multi-material ID system, use `t3.objunpackmtls` to separate OBJ by their material.
* Add a variety of nodes, including `t3.GaussianBlur`, `t3.ImgBinaryOp`, `t3.SuperSampling2x2`...
* Support `t3.DynamicMesh` for mesh with dynamic number of face.
* Add `taichi_three.mciso` module, with `MCISO` and `Voxelizer`.
* Support `t3.Skybox` as model and background sampler.
* Support `t3.ModelGroup` for grouped transformations.
* Add `t3.WireframeModel` and `t3.PolyToEdge`.

Minor fixes:
* Make camera buffer update less ad-hoc.
* Fix `t3.readobj` default orientation to be `-xyz`.

TODO list
---------

Expand Down
2 changes: 1 addition & 1 deletion taichi_three/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Taichi THREE is an extension library of the `Taichi Programming Language <https://github.com/taichi-dev/taichi>`_, that helps rendering your 3D scenes into nice-looking 2D images to display in GUI.
'''

__version__ = (0, 0, 8)
__version__ = (0, 0, 9)
__author__ = '彭于斌 <1931127624@qq.com>'
__license__ = 'MIT'

Expand Down

0 comments on commit 9039923

Please sign in to comment.