Skip to content

Commit

Permalink
HoudiniNiagara:
Browse files Browse the repository at this point in the history
- Update 2.5 of the plugin.
- Adds support for Unreal 5.3.
  • Loading branch information
dpernuit committed Sep 20, 2023
1 parent 28b82b9 commit cd82296
Show file tree
Hide file tree
Showing 19 changed files with 7,716 additions and 7,409 deletions.
80 changes: 40 additions & 40 deletions HoudiniNiagara.uplugin
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
{
"FileVersion": 3,
"Version": 2,
"VersionName": "2.4.0",
"EngineVersion" : "5.2",
"FriendlyName": "Houdini Niagara",
"Description": "Import Houdini point cloud data into UE5 to drive Niagara particle systems.",
"Category": "FX",
"CreatedBy": "Side Effects Software Inc.",
"CreatedByURL": "http://www.sidefx.com",
"DocsURL": "https://www.sidefx.com/docs/unreal/_niagara.html",
"MarketplaceURL" : "com.epicgames.launcher://ue/marketplace/product/79d2dd58387c4696a0f3458275f739d6",
"SupportURL": "https://www.sidefx.com/bugs/submit/",
"EnabledByDefault": false,
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,

"Modules":
[
{
"Name": "HoudiniNiagara",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "HoudiniNiagaraEditor",
"Type": "Editor",
"LoadingPhase": "Default"
}
],

"Plugins":
[
{
"Name": "Niagara",
"Enabled": true
}
]
}
{
"FileVersion": 3,
"Version": 2,
"VersionName": "2.5.0",
"EngineVersion" : "5.3",
"FriendlyName": "Houdini Niagara",
"Description": "Import Houdini point cloud data into UE5 to drive Niagara particle systems.",
"Category": "FX",
"CreatedBy": "Side Effects Software Inc.",
"CreatedByURL": "http://www.sidefx.com",
"DocsURL": "https://www.sidefx.com/docs/unreal/_niagara.html",
"MarketplaceURL" : "com.epicgames.launcher://ue/marketplace/product/79d2dd58387c4696a0f3458275f739d6",
"SupportURL": "https://www.sidefx.com/bugs/submit/",
"EnabledByDefault": false,
"CanContainContent": true,
"IsBetaVersion": false,
"Installed": false,
"Modules":
[
{
"Name": "HoudiniNiagara",
"Type": "Runtime",
"LoadingPhase": "Default"
},
{
"Name": "HoudiniNiagaraEditor",
"Type": "Editor",
"LoadingPhase": "Default"
}
],
"Plugins":
[
{
"Name": "Niagara",
"Enabled": true
}
]
}
98 changes: 49 additions & 49 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
# Houdini Niagara plug-in for Unreal

This plug-in adds a new "Houdini Data Interface" to Niagara.
This version of the plugin is currently updated for UE5.2.

The data interface allows importing and processing Houdini Point Cache assets in Niagara.
The point cache files can be exported using the Niagara ROP, available via the SideFXLabs tools.
https://www.sidefx.com/tutorials/sidefx-labs-installation/

Supported file types for the point caches are:
- *.hjson: Houdini JSON point cache (ascii)
- *.hbjson: Houdini JSON point cache (binary)
- *.hcsv: Houdini CSV point cache (legacy CSV, used by previous version of this plugin)

### To build it:
- Copy the plug-in files to your UE5 source directory. (in Engine/Plugins/FX)
- Build UE5

Alternatively, you can also download the prebuilt binaries in the "releases" section of this repo.
1. Unzip the downloaded files.
2. Copy the HoudiniNiagara folder into __Your_Unreal_Project/Plugins__.

You will now have access to the Houdini Niagara plug-in (under the Project/FX Category).

Once enabled, the plug-in will give you access to a new Houdini Point Cache Data Interface in the Niagara Script Editor. The Data Interface will allow you to use multiples nodes and functions to access and parse data from the exported point cache.

The Niagara plug-in must be enabled as well, as the Houdini Niagara plug-in depends on it too.

### For more information:
#### Quick Start Videos:
https://www.sidefx.com/tutorials/houdini-to-ue4s-niagara/

#### Documentation for the plugin can be found here:
https://www.sidefx.com/docs/unreal/_niagara.html

#### Demo Content:
[Example hip files and a content plugin can be found here.](https://drive.google.com/open?id=1yvTNEq-kaPeecJzP3C34xxGq2h_eQERX)

To install the content plugin:
1. Create a new ue5 project (if you don't have one already)
2. Copy HoudiniNiagaraDemo2020 into the Plugins folder of your Unreal project.

#### Additional info and links to video tutorials here:
https://www.sidefx.com/forum/topic/73075/

#### Programmable VFX with Unreal Engine's Niagara | GDC 2018
https://youtu.be/mNPYdfRVPtM?t=2269


# Houdini Niagara plug-in for Unreal

This plug-in adds a new "Houdini Data Interface" to Niagara.
This version of the plugin is currently updated for UE5.3.

The data interface allows importing and processing Houdini Point Cache assets in Niagara.
The point cache files can be exported using the Niagara ROP, available via the SideFXLabs tools.
https://www.sidefx.com/tutorials/sidefx-labs-installation/

Supported file types for the point caches are:
- *.hjson: Houdini JSON point cache (ascii)
- *.hbjson: Houdini JSON point cache (binary)
- *.hcsv: Houdini CSV point cache (legacy CSV, used by previous version of this plugin)

### To build it:
- Copy the plug-in files to your UE5 source directory. (in Engine/Plugins/FX)
- Build UE5

Alternatively, you can also download the prebuilt binaries in the "releases" section of this repo.
1. Unzip the downloaded files.
2. Copy the HoudiniNiagara folder into __Your_Unreal_Project/Plugins__.

You will now have access to the Houdini Niagara plug-in (under the Project/FX Category).

Once enabled, the plug-in will give you access to a new Houdini Point Cache Data Interface in the Niagara Script Editor. The Data Interface will allow you to use multiples nodes and functions to access and parse data from the exported point cache.

The Niagara plug-in must be enabled as well, as the Houdini Niagara plug-in depends on it too.

### For more information:
#### Quick Start Videos:
https://www.sidefx.com/tutorials/houdini-to-ue4s-niagara/

#### Documentation for the plugin can be found here:
https://www.sidefx.com/docs/unreal/_niagara.html

#### Demo Content:
[Example hip files and a content plugin can be found here.](https://drive.google.com/open?id=1yvTNEq-kaPeecJzP3C34xxGq2h_eQERX)

To install the content plugin:
1. Create a new ue5 project (if you don't have one already)
2. Copy HoudiniNiagaraDemo2020 into the Plugins folder of your Unreal project.

#### Additional info and links to video tutorials here:
https://www.sidefx.com/forum/topic/73075/

#### Programmable VFX with Unreal Engine's Niagara | GDC 2018
https://youtu.be/mNPYdfRVPtM?t=2269


Loading

0 comments on commit cd82296

Please sign in to comment.