Forgot your password?   Click here   •   No account yet?   Please Register    •   Or login using  
EN Login
SideFX Homepage
  • Products
    • What's New in H20.5
      • Overview
      • VFX
      • Copernicus
      • Animation
      • Rigging
      • Lookdev
    • Houdini
      • Overview
      • FX Features
      • CORE Features
      • Solaris
      • PDG
    • Houdini Engine
      • Overview
      • Engine Plug-Ins
      • Batch
    • Karma Renderer
    • Compare
    • SideFX Labs
    • Partners
  • Industries
    • Film & TV
    • Game Development
    • Motion Graphics
    • Virtual Reality
    • Synthetic Data for AI/ML
  • Community
    • Forum
    • News Feed
      • Overview
      • Project Profiles
      • Houdini HIVE Events
      • Contests & Jams
    • Gallery
    • Event Calendar
    • User Groups
    • Artist Directory
  • Learn
    • Tutorials
      • Overview
      • My Learning
      • Learning Paths
      • Tutorial Library
    • Content Library
    • Tech Demos
    • Talks & Webinars
    • Education Programs
      • Overview
      • Students
      • Instructors
      • Administrators
      • List of Schools
      • Resources
  • Support
    • Customer Support
    • Help Desk | FAQ
    • System Requirements
    • Documentation
    • Changelog / Journal
    • Report a Bug/RFE
  • Try | Buy
    • Try
    • Buy
    • Download
    • Contact Info
 
Advanced Search
Forums Search
Found 10 posts.

Search results Show results as topic list.

Houdini Lounge » 20.5 sneak peek is here!

User Avatar
yaohao
12 posts
Offline
 June 20, 2024 21:18:38
unless they can really fix those viewport bugs...
See full post 

Solaris and Karma » Viewport in Solaris doesn't show anything.

User Avatar
yaohao
12 posts
Offline
 June 15, 2023 00:02:29
Just tried houdini19.5 on ubuntu 18.04 and found this problem.Everything shows correctly in Obj viewport,but just show nothing atfter imported into Solaris,and houdini even crashes sometimes.
Does anyone know how to fix it ?
Thanks!
See full post 

Solaris and Karma » How to replace the material of the assets created by layout node

User Avatar
yaohao
12 posts
Offline
 April 4, 2023 05:49:10
I have scattered bunch of assets in the scene using layout node,but i want to repalce the material of those assets by new one,is it possible to do that?
Edited by yaohao - April 4, 2023 21:12:47
See full post 

Technical Discussion » How to make viscous fluid stick onto a flat surface?

User Avatar
yaohao
12 posts
Offline
 May 12, 2014 08:11:57
Hi~I'm trying to make an viscous fluid effect like a jam that can stick on to the collision object,the collision object is a kinda flat surface,just like what you can see in the image below.I've tryed everything that I know,the fluid just can't stick to the bottom of the surface but only the edges area where the surface is a bit curved. I also tryed to modify the velocity of the particles to track the surface but the added velocity where right under the bottom always got eliminated during the viscosity stage.Does anyone know how to fix this problem? thanks.
See full post 

Houdini Lounge » Problem when import particles to maya through houdini engine

User Avatar
yaohao
12 posts
Offline
 April 3, 2014 23:15:30
Hi~
I've got a problem when I import particle(bgeo or alembic) into maya.I created a OTL which is as simple as containing only a file reader node(or an alembic node for reading almebic file).I used it to load a bgeo file which contained only a particle primitive in maya through houdini engine.It seemed ok ,I saw the particles,then I created a custom attribute to access the attribute that I created in houdini,and used that attribute to set up particle instance.Again I got a fine result when I first played the animation,but once I stopped playing,I lost all the connection between particle shape node and instance node as well as my custom attribute on particle shape node. How did that happen?Is it a bug or I've done something wrong?
See full post 

Technical Discussion » houdini LOD questions

User Avatar
yaohao
12 posts
Offline
 Dec. 28, 2012 01:26:49
Hi~
I am working on my first mantra procedural,and want to do some LOD calculation in it.I wrote some code like below to test VRAY_Procedural::getLevelOfDetail method:

UT_BoundingBox box;
box.initBounds(-12,-12,-12);
box.enlargeBounds(12,12,12);
fpreal lod = VRAY_Procedural::getLevelOfDetail(box);
cout<<“the LOD is: ”<<lod<<endl;

the returned “lod” is always a fraction digit as I expanding the bounding box and will suddenly goes to 1000 when it gets too close to my camera. I checked the VRAY_DemoSprite sample and it implied that LOD is not just a fraction digit and will be great than 1 sometimes ,so what is wrong with my code?
See full post 

Technical Discussion » query mantra settings during a procedural

User Avatar
yaohao
12 posts
Offline
 Dec. 11, 2012 07:43:04
Each shadow map is rendered as a separate frame. You can see this if you inspect the .ifd file. If your procedural is close to one light source, but far from another, it will be rendered with different level of detail for each shadow map (see the getLevelOfDetail [sidefx.com] method

but my procedural is very time consuming and will generate a large quantity of detail , calculate it for each light is really a nightmare,how to avoid this problem,I really need these shadow maps to get soft shadows.
See full post 

Technical Discussion » query mantra settings during a procedural

User Avatar
yaohao
12 posts
Offline
 Dec. 11, 2012 07:14:22
mark
yaohao
Hey everyone!I am try to build a mantra procedural these days.I want to add some mantra properties checks to my procedural ,and I don't know how to query them through “VRAY_Procedural::import()” method.I looked up in the document ,it only mentions how to query cam or object properties using “object:**” or “camera:**” but nothing about the renderer,so could anyone tell me how to get it .
oh~ BTW,there is a example on querying object property in the document like this “object:shadingquality” ,however,the corresponding property is named as “vm_shadingquality” in object parameters list.I'm little confused about the two names. how can i get the right name when using “import” method?

Try creating a .ifd file with the lines
ray_show global
ray_show object

Then run:
mantra < show.ifd

These are the mantra settings. The “vm_shadingquality” is the name of the Houdini parameter, which gets mapped by SOHO to the proper mantra setting.


Thanks mark! That is exactly what I want, really helpful! And here comes another problem ,when I compiled my procedural shader and made some test by output some informations to houdini console,I found my procedural get calculated for several times if I have multiple lights in the scene with each of them casts a shadow map shadow.why did this happen?
See full post 

Technical Discussion » query mantra settings during a procedural

User Avatar
yaohao
12 posts
Offline
 Dec. 10, 2012 11:00:51
Hey everyone!I am try to build a mantra procedural these days.I want to add some mantra properties checks to my procedural ,and I don't know how to query them through “VRAY_Procedural::import()” method.I looked up in the document ,it only mentions how to query cam or object properties using “object:**” or “camera:**” but nothing about the renderer,so could anyone tell me how to get it .
oh~ BTW,there is a example on querying object property in the document like this “object:shadingquality” ,however,the corresponding property is named as “vm_shadingquality” in object parameters list.I'm little confused about the two names. how can i get the right name when using “import” method?
See full post 

Technical Discussion » how do i know if a cloth object is clolliding

User Avatar
yaohao
12 posts
Offline
 Feb. 13, 2011 04:13:20
i want to get the collision state of a cloth object,but unlike the RBD,there is no subdata like “Impacts” that i can detect during cloth sim.so,how should i do?
See full post 
  • Quick Links
Search links
Show recent posts
Show unanswered posts
PRODUCTS
  • Houdini
  • Houdini Engine
  • Houdini Indie
LEARN
  • Talks & Webinars
  • Education Programs
SUPPORT
  • Customer Support
  • Help Desk | FAQ
  • Documentation
  • Report a Bug/RFE
  • Sales Inquiry
LEGAL
  • Terms of Use
  • Privacy Policy
  • License Agreement
  • Accessibility
  • Responsible Disclosure Program
COMPANY
  • About SideFX
  • Careers
  • Press
  • T-Shirt Store
  • Internships
  • Contact Info
Copyright © SideFX 2025. All Rights Reserved.

Choose language