jnsmalm / pixi3d

The 3D renderer for PixiJS. Seamless integration with 2D applications.
https://pixi3d.org
MIT License
759 stars 44 forks source link

How it's different from Pixi Projection plugin? #91

Closed dmitrykolesnikovich closed 2 years ago

dmitrykolesnikovich commented 2 years ago

Could you please explain in few words how Pixi3D is different from Pixi Projection plugin https://github.com/pixijs/pixi-projection?

jnsmalm commented 2 years ago

Pixi3D was created to render 3D objects in a 3D world. It can load models created with a 3D modelling tool like Blender or Maya.

Pixi-projection was created to display 2D images with a 3D perspective/projection. I have not used pixi-projection myself, so my explanation may be too simplified.

dmitrykolesnikovich commented 2 years ago

For project like Spades (card game) would you recommend to use 2D plugin or your 3D renderer? All assets are 2D sprites.

image

jnsmalm commented 2 years ago

Both will probably work. That game is simple enough to create a small prototype with both libs and then you can choose the one you like most.

dmitrykolesnikovich commented 2 years ago

Thanks!