Found 537 posts.
Search results Show results as topic list.
Houdini Engine for Unity » Indie assets not allowed with commercial license
- seelan
- 571 posts
- Offline
We don't allow mixing of Indie and Commercial licenses on the same machine. Please email support@sidefx.com to help you setup your license.
Houdini Engine for Unity » Unity Terrain data
- seelan
- 571 posts
- Offline
So that would be sending height data upstream to Houdini from Unity. Currently not possible, but is part of future plans to add in.
A workaround (haven't tried it myself) would be to use the Export Raw functionality in Unity Terrain settings. You might be able to use that exported file as input (heighfield) for your HDA.
Another method would be write a script that can query the height values from the terrain data (https://docs.unity3d.com/ScriptReference/TerrainData.GetHeights.html) and somehow marshall into your HDA as a parameter input (as float array or file data). It can be a little tricky to get the size and coordinates to match up though.
A workaround (haven't tried it myself) would be to use the Export Raw functionality in Unity Terrain settings. You might be able to use that exported file as input (heighfield) for your HDA.
Another method would be write a script that can query the height values from the terrain data (https://docs.unity3d.com/ScriptReference/TerrainData.GetHeights.html) and somehow marshall into your HDA as a parameter input (as float array or file data). It can be a little tricky to get the size and coordinates to match up though.
Edited by seelan - Jan. 18, 2018 16:37:07
Houdini Engine for Unity » Unity Terrain data
- seelan
- 571 posts
- Offline
Currently the Unity plugin does not directly support Houdini heightfields as Unity terrain. As a workaround, use a convert_heightfield, which will then allow the plugin to bring it in as a regular mesh.
There is development currently being done to support heightfields directly. As for ETA, the best I could promise is sometime this year.
There is development currently being done to support heightfields directly. As for ETA, the best I could promise is sometime this year.
Houdini Engine for Unity » | Tiny Houdini Engine usage showcase |
- seelan
- 571 posts
- Offline
This looks amazing. Love the atmosphere, and visual style. Making of video is pretty cool as well. I sent you a PM.
Houdini Engine for Unity » How do you get multiple materials onto model in Unity?
- seelan
- 571 posts
- Offline
You'll have to create primitive groups, then assign a material for each group. In Unity, you might have to turn off Split Geos by Group under the Cooking tab on the asset's Inspector UI.
See this video that shows setting multiple materials via primitive groups:
https://youtu.be/zzcBhuRLJZo?t=109 [youtu.be]
See this video that shows setting multiple materials via primitive groups:
https://youtu.be/zzcBhuRLJZo?t=109 [youtu.be]
Houdini Engine for Unity » Is the Paint feature broken?
- seelan
- 571 posts
- Offline
Houdini Engine for Unity » Is the Paint feature broken?
- seelan
- 571 posts
- Offline
Yes, there seems to be a bug with the mapping of the painted values when transferring back into Houdini. Will update this thread once it has been fixed.
Houdini Engine for Unity » solution for DLLnotFoundException when installing the Engine plugin
- seelan
- 571 posts
- Offline
Thanks for posting this. Which Houdini version and macOS did this problem occur on? Thanks.
Houdini Engine for Unity » | Wrong "Unity Material" tool's description |
- seelan
- 571 posts
- Offline
Actually it should work if you make sure to start with Assets/
Edited by seelan - Dec. 18, 2017 09:35:03
Houdini Engine for Unity » Documentation and Future ?
- seelan
- 571 posts
- Offline
Ziboo
Thank you for the detail answerseelanv
If they do need to modify the parameters to generate different output, then yes, they will need to have it installed or access to it via network
Does that mean that a studio can only have 1 Houdini Engine licence on a remote computer that every Unity User will hook via network ? Doing so they can modify parameters in Unity ?
Sorry I tried to find detail information on that but couldn't find it…
Technically it is possible, but please follow up with your licensing/sales contact to make sure your usage falls within your licensing agreement.
Houdini Engine for Unity » Why does object display in Unity change?
- seelan
- 571 posts
- Offline
What happens if you generate an FBX in Houdini with the same parameters and import into Unity?
Are you able to attach an HDA for me to test?
Are you able to attach an HDA for me to test?
Houdini Engine for Unity » Documentation and Future ?
- seelan
- 571 posts
- Offline
Ziboo
Will Houdini Engine support runtime one day ? soon ?
1. One day runtime support might be possible. But not soon. As you can imagine, there are licensing issues to sort out besides just the technical.
Ziboo
Will you support Instanced Indirect for instancing geometry on points for maximum performance ?
2. We'll have packed primitive and object instancing support (see this page http://www.sidefx.com/docs/hengine/_h_a_p_i__instancing.html). With object instancing, you can specify either Houdini object nodes or existing Unity gameobjects in the project.
Ziboo
Does every user of Unity needs Houdini installed on their machine ?
3. Depends. As long as the user is not manipulating the parameters of an HDA in Unity, there is no reason to have Houdini installed. They can work with the output gameobject data. If they do need to modify the parameters to generate different output, then yes, they will need to have it installed or access to it via network. Baking outputs allows you to strip away the Houdini Engine components and completely eliminate the need for it, so that is a way to ensure that they don't try to modify parameters. The updated version of the plugin will allow you to update previously baked out prefabs and existing baked out gameobjects (non-prefabs) so that you can have a workflow where the HDA and its outputs can be completely separate, but able to be re-linked when need to update. And this update can happen without being destructive to other components that you added (within reason).
Houdini Engine for Unity » Documentation and Future ?
- seelan
- 571 posts
- Offline
The current plugin supports most SOP nodes that output polygonal geometry. It doesn't currently support volumes or particles, though a future release will support heightfields (converting to Unity terrain). Also supported is the Curve SOP which can be brought in or created newly in Unity, then edited as in Houdini. Materials and textures are also imported. You can also send input data (geometry) and attributes (uv, N, Cd) back into Houdini. This ties in with painting attributes as well, which is supported.
For the upcoming update, we will have more documentation and tutorials, as well as a supported feature list. For best performance of how to structure your geometry, it really depends on the use case. Some objects are better packaged up whole and instanced (eg. rocks, static geo), while others should be in chunks for various reasons including better collision/physics performance, rendering, and flexibility for dynamic effects/changes. You'll have to play around to see what works, but the good news is that you're using Houdini so it shouldn't be hard to try various methods and test performance.
For the upcoming update, we will have more documentation and tutorials, as well as a supported feature list. For best performance of how to structure your geometry, it really depends on the use case. Some objects are better packaged up whole and instanced (eg. rocks, static geo), while others should be in chunks for various reasons including better collision/physics performance, rendering, and flexibility for dynamic effects/changes. You'll have to play around to see what works, but the good news is that you're using Houdini so it shouldn't be hard to try various methods and test performance.
Houdini Engine for Unity » Documentation and Future ?
- seelan
- 571 posts
- Offline
Currently, the documentation that can help you get started is here: http://www.sidefx.com/products/houdini-engine/unity-plug-in/ [www.sidefx.com]
Admittedly there is a lack of documentation in regards to usage such as the Unreal one. This will be addressed in the near future though.
As for the state of the Unity plugin, I can tell you that it will be getting a very well deserved update with lots of improvements in the very near future. It will have similar (more or less) features as the Unreal plugin. It is currently being actively developed though not in a state for public release yet.
If you have specific questions about the plugin, please post here.
Admittedly there is a lack of documentation in regards to usage such as the Unreal one. This will be addressed in the near future though.
As for the state of the Unity plugin, I can tell you that it will be getting a very well deserved update with lots of improvements in the very near future. It will have similar (more or less) features as the Unreal plugin. It is currently being actively developed though not in a state for public release yet.
If you have specific questions about the plugin, please post here.
Houdini Engine for Unity » L_SYSTEM make procedure trees animation can work in unity runtime?
- seelan
- 571 posts
- Offline
This is probably beyond what the Unity plugin can do at the moment. This sounds like it requires runtime evaluation which the plugin does not support. On the other hand, you might have better luck on the general Houdini forums for a more general answer, so try asking there.
Houdini Engine for Unity » Could we have an update to the Unity plugin please?
- seelan
- 571 posts
- Offline
No it hasn't changed, so your edit should work fine.
Edited by seelan - Nov. 22, 2017 15:00:17
Houdini Engine for Unity » Could we have an update to the Unity plugin please?
- seelan
- 571 posts
- Offline
Houdini Engine for Unity » Could we have an update to the Unity plugin please?
- seelan
- 571 posts
- Offline
Hi,
Are you checking the 16.5 branch?
https://github.com/sideeffects/HoudiniEngineForUnity/tree/Houdini16.5 [github.com]
The plugin should be working with production and daily builds. Let me know what errors you are getting.
Are you checking the 16.5 branch?
https://github.com/sideeffects/HoudiniEngineForUnity/tree/Houdini16.5 [github.com]
The plugin should be working with production and daily builds. Let me know what errors you are getting.
Houdini Engine for Unity » houdini16.5 flowmap to color not work
- seelan
- 571 posts
- Offline
Where do you not see the vertex colour? In Houdini, or in Unity through an HDA (via our plugin) or some other format?
Could you clarify further as to what you're trying to do? This sounds like a more general Houdini question that could serve better in one of the other Houdini forums.
Could you clarify further as to what you're trying to do? This sounds like a more general Houdini question that could serve better in one of the other Houdini forums.
Houdini Engine for Unity » Issue reading materials from Unity to Houdini Engine
- seelan
- 571 posts
- Offline
Better support for sending attributes upstream (Unity to Houdini) is probably something we can add sometime in the near-to-distant future though.
-
- Quick Links