rlguy / Blender-FLIP-Fluids

The FLIP Fluids addon is a tool that helps you set up, run, and render high quality liquid fluid effects all within Blender, the free and open source 3D creation suite.

Home Page:https://www.blendermarket.com/products/flipfluids

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

image

FLIP Fluids

The FLIP Fluids addon is a tool that helps you set up, run, and render liquid simulation effects. Our custom built fluid engine is based around the popular FLIP simulation technique that is also found in many other professional liquid simulation tools. The FLIP Fluids engine has been in constant development for over four years with a large focus on tightly integrating the simulator into Blender as an addon. It just feels like a native Blender tool!

With our reputation for delivering high quality software and outstanding customer support, the FLIP Fluids addon is one of the best selling products in the Blender community.

Have any questions? Do not hesitate to ask us here or at support@flipfluids.com!

Getting the FLIP Fluids Addon

You may purchase the FLIP Fluids addon on official marketplaces where the FLIP Fluids addon is sold. Purchasing a license entitles you to the full FLIP Fluids feature set and content, tool support, and helps ensure the continued development of the addon. Thanks to the amazing support of the Blender community, we have been able to further develop the addon on a full-time basis since its initial release in May 2018!

Getting Support

You can get support for the FLIP Fluids addon by reading the documentation and wiki or through the marketplace messaging systems where you have purchased the FLIP Fluids addon product. Support is granted to all customers whom have purchased a license.

Key Features

See any of our market place product pages for information on features.

System Requirements

  • Windows, MacOS, or Linux operating system
  • Blender 2.8 to 4.0 compatible
  • CPU 64-bit Intel® or AMD® or Apple Silicon multi-core processor
  • 8 GB RAM minimum, 16 GB of RAM or more is highly recommended

Blender Support on MacOS: Due to a MacOS specific Blender bug in versions 2.80, 2.81, and 2.82, these Blender versions cannot be supported. Blender 2.83+ or later is required for MacOS.

Release Notes

For release notes, see this page: Release Notes

License

This program uses multiple licenses. See the files LICENSE_GPLv3.md, LICENSE_MIT.md, and LICENSE_Standard_Royalty_Free.md for license details. In General:

  • The Blender addon code is licensed under the GPL.
  • The FLIP Fluids simulation engine is licensed under the MIT license.
  • Some addon content will be using a Standard Royalty Free license. This license may cover content such as example scene files, media, artwork, data, and features that rely on this content (ex: Mixbox color blending features). This content will only be included within the paid addon and will not be available on the GitHub project page. The addon is still completely usable without this content.

Source code files will state their license at the top of the file. Assets will include a license file and information in their containing directory.

Building

To build the FLIP Fluids addon, some programming experience or prior experience building C/C++ applications is recommended. The basics of navigation and executing commands using the command line is also recommended.

Like our FLIP Fluids addon? If you can afford, please consider purchasing a license on an official marketplace to help support our continued development of the project. Development of the FLIP Fluids addon is funded solely through sales through marketplaces, and as a small team we truly appreciate your support.

Source Code Dependencies

There is one dependency to build this program:

  1. A compiler that supports C++11.

WINDOWS OS WARNING: Compilation using MSVC (Microsoft Visual Studio Compiler) is not supported. Building with MSVC will result in errors, performance issues, and incorrect simulation behaviour. The MinGW compiler is the only supported Windows compiler.

Aside from a C++11 compiler, you will also require installations of:

  1. CMake to generate the appropriate solution, project, or Makefiles, for your system.
  2. GNU Make to compile/build the FLIP Fluids simulation engine.
  3. (optional) Python 3.3+ to use the automated build script.

Building with automated script

This repository includes an automated build script to help you build and compile the FLIP Fluids addon. Use of this script requires an installation of Python 3.3+. The script will work best if CMake and GNU Make are located in your system PATH variable, but if not, you may also specify their locations when executing the script (run python build.py --help for help).

To build and compile the FLIP Fluids addon, navigate to the root of the project directory and run:

python build.py

Once successfully built, the FLIP Fluids addon will be located in the build/bl_flip_fluids/ directory.

Building without automated script

To build and compile the FLIP Fluids addon without the automated Python script, first copy the cmake/CMakeLists.txt file to the root of the project directory. The program can then be built and compiled using CMake and GNU Make. Example if your current working directory is located at the project root:

mkdir build
cd build
cmake .. -DBUILD_DEBUG=ON
make
cmake .. -DBUILD_DEBUG=OFF
make

The above script uses CMake and GNU Make to build the FLIP Fluids engine twice: once for the debug version of the engine, and again for the optimized release version of the engine.

The CMake Generator can be specified by adding the -G "[generator]" flag. For example, to specify MinGW Makefiles on Windows OS, you can add the CMake flag -G "MinGW Makefiles".

Once successfully built, the FLIP Fluids addon will be located in the build/bl_flip_fluids/ directory.

Links

About

The FLIP Fluids addon is a tool that helps you set up, run, and render high quality liquid fluid effects all within Blender, the free and open source 3D creation suite.

https://www.blendermarket.com/products/flipfluids

License:GNU General Public License v3.0


Languages

Language:C++ 75.3%Language:Python 21.5%Language:C 3.1%Language:CMake 0.1%Language:Batchfile 0.0%