Announcement

Collapse
No announcement yet.

NVIDIA Kepler

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #46
    I can't promise the color correction, but the other improvements (CUDA kernel, pixel filtering, full texture size, motion blur) will be there.

    Best regards,
    Vlado
    I only act like I know everything, Rogers.

    Comment


    • #47
      Fff... CC for us is very important =) Ok, we will wait a little


      Code:
      macroScript CC_All category:"VRay" tooltip:"Add CC Map to all VRay Materials" buttontext: "CC All"
      (
      	--CC Map in diffuse slot of ALL VRay Materials where a bitmap is present
      	if queryBox "Add CC Map to ALL VRay Materials?" do
      	(
      		vrmArr = getClassInstances vrayMtl
      		for vrm in vrmArr do
      		(
      			if isKindOf vrm.texmap_diffuse Bitmaptexture then
      			(
      				cc = ColorCorrection map:(vrm.texmap_diffuse) lightnessMode:1
      				vrm.texmap_diffuse = cc
      			)
      		)
      	)
      )
      
      macroScript CC_Selected category:"VRay" tooltip:"Add CC Map to Selected" buttontext: "CC Selected"
      (
      	--CC Map in diffuse slot of SELECTED objects
      	objs = getCurrentSelection()
      	
      	for obj in objs do
      	(
      		vrmArr = getClassInstances vrayMtl target:obj
      		
      		for vrm in vrmArr do
      		(
      			if isKindOf vrm.texmap_diffuse Bitmaptexture then
      			(
      				cc = ColorCorrection map:(vrm.texmap_diffuse) lightnessMode:1
      				vrm.texmap_diffuse = cc
      			)
      		)
      	)
      )
      www.francescolegrenzi.com

      VRay - THE COMPLETE GUIDE - The book
      Corona - THE COMPLETE GUIDE - The book


      --- FACEBOOK ---

      Comment


      • #48
        Originally posted by vlado View Post
        I can't promise the color correction, but the other improvements (CUDA kernel, pixel filtering, full texture size, motion blur) will be there.

        Best regards,
        Vlado
        Thanks for your work !
        Render and Animation - WWW.IMERGO.IT

        Comment


        • #49
          Originally posted by cecofuli View Post
          Ciao Alessandro,

          Filter and CC = Color Correction Map =)
          ah!! that filter ...totally forgot about it

          thks
          Alessandro

          Comment

          Working...
          X