diff --git a/README.md b/README.md index d3d2b17..b2826cc 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ Blender addon to render 360° and 180° images and videos in eevee engine with s You will need to get [**Blender 3.x**](https://www.blender.org), install it, download the zip file from this GitHub, load the addon into Blender by installing the zip file in Blender Preferences > Add-ons > Install, search for "eeVR" under the Community tab and click the checkbox to enable it. A tool panel will appear in the 3D Viewport's **Tool tab**, FOV value adjustment, and buttons for rendering stills and animations. **The rendered images/image sequences will be stored in the same directory as the .blend file**. +**NOTE** : The eeVR panel appears only when the render engine is EEVEE. + ![Tool Panel](img/tools-01.jpg "Tool Panel") ![Tool Panel](img/tools-02.jpg "Tool Panel") ### Stitch Margin @@ -20,6 +22,12 @@ Final Image ![Final Image](img/finalimage.jpg "Final Image") +### No Side Plane + +Generates panorama image **without rendering side views**. + +It is neccesary Horizontal FOV is under 160°. + ## License This project is licensed under the GNU General Public License v3.0 - see the [LICENSE.md](LICENSE.md) file for details. diff --git a/__init__.py b/__init__.py index 2f124b8..6a994ed 100644 --- a/__init__.py +++ b/__init__.py @@ -22,7 +22,7 @@ "name": "eeVR", "description": "Render in different projections using Eevee engine", "author": "EternalTrail, SAMtak", - "version": (0, 4, 0), + "version": (0, 5, 0), "blender": (3, 0, 0), "location": "View3D > Tool Tab (Available when EEVEE or Workbench)", "warning": "This addon is still in early alpha, may break your blend file!", diff --git a/img/tools-01.jpg b/img/tools-01.jpg index 5f7d4d9..87d9672 100644 Binary files a/img/tools-01.jpg and b/img/tools-01.jpg differ diff --git a/img/tools-02.jpg b/img/tools-02.jpg index 07d8a1b..6afc327 100644 Binary files a/img/tools-02.jpg and b/img/tools-02.jpg differ