bkboggy / MayaFluidsPlugin

A custom fluid plugin for Maya 2017 based on Jos Stam's Stable Fluids paper.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MayaFluidsPlugin

As a tip, use the following python script to load the plugin from any location:

import maya.cmds as cmds

pluginName = "MayaFluidsPlugin.mll"
pluginPath = "Your path goes here" + pluginName
loaded = cmds.pluginInfo(pluginName, query=True, loaded=True)
if loaded:
  cmds.unloadPlugin(pluginName)
cmds.loadPlugin(pluginPath)

Videos demonstrating the results of this plugin may be found at:

Result #1

Result #2

Result #3

About

A custom fluid plugin for Maya 2017 based on Jos Stam's Stable Fluids paper.


Languages

Language:C++ 100.0%