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
    • Licensing
      • Overview
      • Commercial
      • Indie
      • Education
    • Help Desk | FAQ
    • System Requirements
    • Documentation
    • Changelog / Journal
    • Report a Bug/RFE
  • Try | Buy
    • Try
    • Buy
    • Download
    • Contact Info
 
Advanced Search
Forums Search
Found 25 posts.

Search results Show results as topic list.

Solaris and Karma » reference paths from list of primitive paths

User Avatar
Orsonorix
25 posts
Offline
 Sept. 5, 2024 13:04:48
Lets say I'm defining scene structure like in this example and I want to use this defined structure as path references in different nodes, same way as in sop you can create channel reference. That would make sure i can change name in scene structure and auto update it elsewhere since as I understand there are no dynamic links in usd. I'm starting with usd and solaris so I'm not sure if this kind of channel referencing is necessary, but I feel like this would reduce possible errors in paths.
See full post 

Solaris and Karma » reference paths from list of primitive paths

User Avatar
Orsonorix
25 posts
Offline
 Sept. 2, 2024 18:11:32
Hi, I'm using primitive node to define scene structure. if I use relative reference it references all paths how to reference single one?
See full post 

Solaris and Karma » Solars / Karma CPU/XPU domelight issue

User Avatar
Orsonorix
25 posts
Offline
 Aug. 5, 2024 08:59:08
Actually found workaround here https://www.sidefx.com/forum/topic/94635/ [www.sidefx.com]
solution for me was to set env HOUDINI_OCIO_FILENAME_COLORSPACE = 3. I have to use kma_ocio_transform after reading texture file, and set From_space "SRGB" and To_Space "scene-linear Rec.709-sRGB", but after that renders look similar
cheers
See full post 

Solaris and Karma » Solars / Karma CPU/XPU domelight issue

User Avatar
Orsonorix
25 posts
Offline
 Aug. 5, 2024 08:30:20
I have problem with domelight and karma XPU. In this example I've used one of hdri hraven maps. It works fine in redshift and karma CPU. Renders look identical, but karma XPU is different I'm suspecting colorspace issue. Maybe someone had this problem and shares solution
cheers

Redshift



Karma CPU



Karma XPU

See full post 

Solaris and Karma » Randomly turn off instanced subcomponents

User Avatar
Orsonorix
25 posts
Offline
 Aug. 5, 2024 08:19:54
edit prototype seems handy in this case. For now I've used explore variants and after that randomly instanced them, and it worked fine. Thanks for suggestion
See full post 

Solaris and Karma » Randomly turn off instanced subcomponents

User Avatar
Orsonorix
25 posts
Offline
 Aug. 2, 2024 09:41:38
Lets say I have animated assets of different models with many different accessories. I'm using this all assets in point instancer as references, and after instancing is done I'm randomizing time offset on instances. Now I'd like to randomly hide different accessories on different model variants. Is it possible on this stage of scene assembly?
See full post 

Solaris and Karma » Large crowds in solaris?

User Avatar
Orsonorix
25 posts
Offline
 July 31, 2024 08:27:41
The biggest issue for this moment is viewport in solaris and very long time of loading agents. Is it possible to add usd proxy to agent made with mixamo fbx?
See full post 

Solaris and Karma » Large crowds in solaris?

User Avatar
Orsonorix
25 posts
Offline
 July 30, 2024 19:40:08
Hi,
I have question regarding solaris/karma and crowds. I know there is new Crowd Procedural which is supposed to help with rendering and its fine on small scale, but is it even possible to render really large crowd for example stadium in solaris? I'm trying workflow for crowd procedural as it's suggested in documentation, but i cant load this many agents to lops, even few thousands seems to be overkill so I'm wandering if it's possible to do this. If not, how would you render this?
See full post 

Technical Discussion » Swap rbd during simulation

User Avatar
Orsonorix
25 posts
Offline
 Jan. 24, 2022 16:47:13
Hi,
thanks, it worked! I'm attaching hip if anyone interested.
Cheers
See full post 

Technical Discussion » Swap rbd during simulation

User Avatar
Orsonorix
25 posts
Offline
 Jan. 24, 2022 10:28:12
Hi,
Is it possible to swap rbd simulated object to different one while simulating? For example bunch of simulated boxes changes at random to spheres which inherit position, rotation and continue to simulate.
See full post 

Technical Discussion » Alembic point cloud, how to copy detail to points

User Avatar
Orsonorix
25 posts
Offline
 May 7, 2021 05:48:29
Hey,

I did it like this:


vector4 valueq;
int pNum = attribsize(0, "detail", "_orientation");
vector4 _orientation[] = detail(0, "_orientation");

for (int i = 0; i < pNum; i++)
{
    valueq = _orientation[i];
    setpointattrib(0, "orient", i, valueq, "set");
}

Hope it helps
See full post 

Technical Discussion » Alembic point cloud, how to copy detail to points

User Avatar
Orsonorix
25 posts
Offline
 Nov. 27, 2020 08:01:00
You helped me a lot! Now I know what was wrong.
Thanks!
See full post 

Technical Discussion » Alembic point cloud, how to copy detail to points

User Avatar
Orsonorix
25 posts
Offline
 Nov. 27, 2020 07:36:50
Hi
I have alembic with point cloud exported from Max tyflow , and age of particles is stored in detail. It looks like I need to read _age and assign it to corresponding point, but I can read only first value. There is everything in spreadsheet but can't read chosen value. If I use

f@age = detail(0,“_age”,0);
I will get first _age and that is correct but if I use

f@age = detail(0,"_age",0);
I get 0 and that is wrong.

There is different value in spreadsheet on detail _age. Same problem if color is exported it also lands in detail in this form. If Velocity is exported it's stored on points as usually

Scene with simple alembic in attachment.

Thanks
See full post 

Technical Discussion » H18 Rbd Hero & Flip volume Loss

User Avatar
Orsonorix
25 posts
Offline
 Nov. 10, 2020 14:12:40
Hello,

I think I have a similar problem so I will post it here. I can't find solution for volume loss in flip after introducing rbd object. I've tried everything, I knew that could help but with no luck. I'm attaching hip file, so maybe someone has some time to look at this, and push me in right direction.

Thanks!
See full post 

HOULY Daily Challenge » Day 31 | Materials: Incandescent

User Avatar
Orsonorix
25 posts
Offline
 July 31, 2020 02:57:30
See full post 

HOULY Daily Challenge » Day 24 | Worlds: Ancient

User Avatar
Orsonorix
25 posts
Offline
 July 24, 2020 06:20:50
Ancient
See full post 

HOULY Daily Challenge » Day 17 | Animals: Bones

User Avatar
Orsonorix
25 posts
Offline
 July 17, 2020 11:49:26
See full post 

HOULY Daily Challenge » Day 14 | Animals: Scales

User Avatar
Orsonorix
25 posts
Offline
 July 14, 2020 03:08:52
See full post 

HOULY Daily Challenge » Day 13 | Animals: Slime

User Avatar
Orsonorix
25 posts
Offline
 July 13, 2020 06:54:18
See full post 

HOULY Daily Challenge » Day 11 | Motion: Squash & Stretch

User Avatar
Orsonorix
25 posts
Offline
 July 11, 2020 21:00:01
See full post 
  • First
  • 1
  • 2
  • Last
  • 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
  • Internships
  • Contact Info
Copyright © SideFX 2025. All Rights Reserved.

Choose language