Jump to content

Search the Community

Showing results for tags 'irradiance'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Lounge/General chat
    • Education
    • Jobs
    • Marketplace
  • Houdini
    • General Houdini Questions
    • Effects
    • Modeling
    • Animation & Rigging
    • Lighting & Rendering + Solaris!
    • Compositing
    • Games
    • Tools (HDA's etc.)
  • Coders Corner
    • HDK : Houdini Development Kit
    • Scripting
    • Shaders
  • Art and Challenges
    • Finished Work
    • Work in Progress
    • VFX Challenge
    • Effects Challenge Archive
  • Systems and Other Applications
    • Other 3d Packages
    • Operating Systems
    • Hardware
    • Pipeline
  • od|force
    • Feedback, Suggestions, Bugs

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Name


Location


Interests

Found 1 result

  1. I have a simple shader to export separated indirect and direct image planes. #pragma hint clr color #pragma hint direct hidden #pragma hint indirect hidden surface sep_lighting(vector clr = 1; export vector direct = 0; export vector indirect = 0) { vector nn = frontface(normalize(N),I); Cf = 0; illuminance(P, nn, "categories", "direct") { shadow(Cl); direct += Cl * clr * dot(nn,normalize(L)); } illuminance(P, nn, "categories", "indirect") { indirect += Cl * clr; } Cf = direct; } [/CODE] But its indirect pass contents direct lighting ([i]/out/mantra1[/i] ROP in attached file): Another shader with Irradiance in Material VOP works perfectly ([i]/out/mantra2[/i] ROP): Mantra also prints warnings about constant and plastic but this shaders are not used here. I even checked the ifd. Where I was wrong? sep_lighting.hipnc
×
×
  • Create New...