Tue, Nov 19, 9:00 AM CST

Renderosity Forums / Poser - OFFICIAL



Welcome to the Poser - OFFICIAL Forum

Forum Coordinators: RedPhantom

Poser - OFFICIAL F.A.Q (Last Updated: 2024 Nov 18 10:25 pm)



Subject: IDL Light Wall


  • 1
  • 2
bagginsbill ( ) posted Thu, 07 January 2010 at 10:10 PM ยท edited Tue, 19 November 2024 at 8:58 AM

file_446053.jpg

Here's a little IDL amusement.

Add a one sided square. Set its scale to 1000%. Set xScale to 600%. This makesย a wall.

Apply this shader.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


bagginsbill ( ) posted Thu, 07 January 2010 at 10:11 PM

file_446054.jpg

Duplicate it and move the dup away, making a hallway.

Add a ceiling, using another scaled square with a plain white material.

Render with no lights.

This done with Poser Pro 2010, with GC enabled.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


RobynsVeil ( ) posted Thu, 07 January 2010 at 10:35 PM


So ambient_value at .5, ambient_color white appears to give off light. Light is reflected on the floor - I'm assuming no reflection is turned on for floor or ceiling? The figure appears to be illuminated by the wall "lights".
All just because you're using IDL. If you weren't, what, nothing would render except white squares where that wall is?
No even going to comment on the shader: it's just defining where the squares are going to be, is that correct?

Monterey/Mint21.x/Win10 - Blender3.x - PP11.3(cm) - Musescore3.6.2

Wir sind gewohnt, daรŸ die Menschen verhรถhnen was sie nicht verstehen
[it is clearย that humans have contempt for that which they do not understand]ย 

Metaphor of Chooks


pjz99 ( ) posted Thu, 07 January 2010 at 10:41 PM

Are speculars now aware of ambient, or does the figure have reflection on it?

My Freebies


SamTherapy ( ) posted Thu, 07 January 2010 at 10:54 PM

Yet another reason for me to want P8 and a new computer to run it on. ย :(ย 

Damn you, BagginsBill. ย ;)

Coppula eam se non posit acceptera jocularum.

My Store

My Gallery


FightingWolf ( ) posted Thu, 07 January 2010 at 11:21 PM

Quote - Yet another reason for me to want P8 and a new computer to run it on. ย :(ย 

Damn you, BagginsBill. ย ;)

I understand just how you feel. with the exception of Poser 8. I have that already., but a new computer would make it 100% better. lol

Frederick
Poser By Design



dlfurman ( ) posted Thu, 07 January 2010 at 11:32 PM

Flipside to FightingWolf.

New PC, No Poser 8.....(Sigh)

"Few are agreeable in conversation, because each thinks more of what he intends to say than that of what others are saying, and listens no more when he himself has a chance to speak." - Francois de la Rochefoucauld

Intel Core i7 920, 24GB RAM, GeForce GTX 1050 4GB video, 6TB HDD space
Poser 12: Inches (Poser(PC) user since 1 and the floppies/manual to prove it!)


bagginsbill ( ) posted Thu, 07 January 2010 at 11:39 PM

Quote -
So ambient_value at .5, ambient_color white appears to give off light. Light is reflected on the floor - I'm assuming no reflection is turned on for floor or ceiling? The figure appears to be illuminated by the wall "lights".
All just because you're using IDL. If you weren't, what, nothing would render except white squares where that wall is?
No even going to comment on the shader: it's just defining where the squares are going to be, is that correct?

Not .5, but 5. The luminance of the white rectangles is hyper-white 5.

The floor is a diffuse and reflect, which means you're getting IDL diffuse light coming from those rectangles, as well as some specular reflection of those rectangles. Because the reflection is very low, the luminance of the reflections is in the unit range, despite the fact that the rectangles are hyper white.

If I turned off IDL, we'd see the white rectangles and specular reflections of them, but everything else would be black.

The shader is not just hyper white. It also has ordinary diffuse in it. (Think about one of those panels if the light bulb blew out. It would be white plastic, illuminated by the other panels, so it would diffusely reflect some of that.) So my shader is white plastic (diffuse) plus in the rectangles some seriously bright self illumination.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


bagginsbill ( ) posted Thu, 07 January 2010 at 11:41 PM

Quote - Are speculars now aware of ambient, or does the figure have reflection on it?

The figure and floor have reflection on them. Specular nodes probably never be IDL aware. Specular nodes are just simplified models of reflection of traditional light sources.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


bagginsbill ( ) posted Thu, 07 January 2010 at 11:46 PM ยท edited Thu, 07 January 2010 at 11:48 PM

I actually threw this together because of the node tut discussion in the other thread we're talking in.

What is a subtract node for?ย Here are two of them. One was used to calculate the complement of the V coordinate. Why?ย Because I need to know how far I am from the top and from the bottom. Whichever is smaller, is the nearer edge. That's the job of the Min - which is smaller?

The other subtract node was to take that distance (to the nearest edge) and subtract .15 from it so that if I'm closer than .15, I have a negative number, and if I'm farther than .15 I have a positive number.

I then multiply that by 100 and clamp it. This gives me a sharp gradient from 0 to 1 that begins .15 V units from the nearest edge.

So subtract is for finding nearest edges, or for finding distance from a known coordinate, or for a billion other things.

Clamp was used to limit value to 0 to 1. (Robyn, you and CobaltDream know that was to force it to be a PBUF. None of the people here know what a PBUF is, so I have to explain it in more words. Someday, everybody will know what a PBUF is.)

Anyway, that gives me a horizontal band of white that I multiply with the white vertical bands coming from the tile node to get the rectangles the size I wanted them.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


RobynsVeil ( ) posted Thu, 07 January 2010 at 11:51 PM ยท edited Thu, 07 January 2010 at 11:52 PM

Quote - Not .5, but 5. The luminance of the white rectangles is hyper-white 5.

Need to have my prescription checked. I could have sworn it said .5. Which didn't make sense.

Ambient_value of 5... does this make white a super-colour? Well, how can it? 1 x 5... what the heck colour is THAT? Or are we not changing WHITE itself, but the behaviour of that channel?
Opening a can of worms...

BTW, this is what I was talking about in that other thread about "Basic Poser Node Behaviour"... THIS needs to be accessible somewhere central...

[EDIT] Dang, cross-posted...

Monterey/Mint21.x/Win10 - Blender3.x - PP11.3(cm) - Musescore3.6.2

Wir sind gewohnt, daรŸ die Menschen verhรถhnen was sie nicht verstehen
[it is clearย that humans have contempt for that which they do not understand]ย 

Metaphor of Chooks


bagginsbill ( ) posted Thu, 07 January 2010 at 11:58 PM ยท edited Fri, 08 January 2010 at 12:00 AM

white is just 1,1,1. Multiply times 5 and it's 5, 5, 5. Yes, that's aย  hyper color (or super color as you said). Means the same as far as I'm concerned.

You and I have talked about this for a long time now. Hopefully it's sinking in. We can work with luminance values that we cannot directly see, but indirectly the effects are felt. The floor reflections are very low at 10%, yet they are bright - because .1 * 5 = .5. So the reflections are about half as bright as the maximum our monitor can display. The directly viewed rectangles appear to be 1, but they are 5.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


bagginsbill ( ) posted Thu, 07 January 2010 at 11:59 PM

file_446061.jpg

I spoke to SM tonight about these darn corner artifacts. They expect them to be fixed soon. There will be another SR for P8, and Poser Pro 2010 will never show these at all.

I would already have been doing a lot of tutorials about IDL, but these artifacts show up. I figure there's no use teaching all about IDL if it's going to change in order to fix this.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


Believable3D ( ) posted Fri, 08 January 2010 at 1:46 AM

Um... where do I find that texture coordinate node?

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Winterclaw ( ) posted Fri, 08 January 2010 at 2:06 AM

Silly question but what is give the gray part of the walls (light between the lights) that slightly cloudy look? ย Is that a part of the artifacts you were talking about?

WARK!

Thus Spoketh Winterclaw: a blog about a Winterclaw who speaks from time to time.

ย 

(using Poser Pro 2014 SR3, on 64 bit Win 7, poser units are inches.)


Believable3D ( ) posted Fri, 08 January 2010 at 3:15 AM

Well, dagnab it. I don't know how you did it, Bagginsbill. I can get a reasonable facsimile of what you did above, considering I didn't get that texture coordinate node. But I can't get raytraced reflections without adding a light.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


bagginsbill ( ) posted Fri, 08 January 2010 at 7:18 AM

Quote - Well, dagnab it. I don't know how you did it, Bagginsbill. I can get a reasonable facsimile of what you did above, considering I didn't get that texture coordinate node. But I can't get raytraced reflections without adding a light.

Heheh. And now you see first hand why I have written over and over and over again:

Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on
Uncheckย REFLECT_KD_MULT - it is also bad


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


bagginsbill ( ) posted Fri, 08 January 2010 at 8:22 AM

The v_texture_coordinate node is New Node/Variables/v


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


pjz99 ( ) posted Fri, 08 January 2010 at 11:47 AM

Quote - Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on
Uncheckย REFLECT_KD_MULT - it is also bad

The default for this should be off if it's never useful.

My Freebies


Believable3D ( ) posted Fri, 08 January 2010 at 12:34 PM

Quote - > Quote - Well, dagnab it. I don't know how you did it, Bagginsbill. I can get a reasonable facsimile of what you did above, considering I didn't get that texture coordinate node. But I can't get raytraced reflections without adding a light.

Heheh. And now you see first hand why I have written over and over and over again:

Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on
Uncheckย REFLECT_KD_MULT - it is also bad

I saw your reference to that above, but Iย had no idea where these parameters even are.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Fri, 08 January 2010 at 12:35 PM

Quote - The v_texture_coordinate node is New Node/Variables/v

Ah, thanks. Makes sense, but not obvious. :)

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


pjz99 ( ) posted Fri, 08 January 2010 at 12:37 PM

Quote - Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on
Uncheckย REFLECT_KD_MULT - it is also bad

I saw your reference to that above, but Iย had no idea where these parameters even are.

They're on the root PoserSurface node.ย  Reflect_Lite_Mult is on for every material by default.

My Freebies


Believable3D ( ) posted Fri, 08 January 2010 at 12:41 PM

Quote - > Quote -

Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on
Uncheckย REFLECT_KD_MULT - it is also bad

I saw your reference to that above, but Iย had no idea where these parameters even are.

Nevermind. Don't know why I couldn't see them earlier. Guess I was expecting them in a different place.

The KD_MULT was already unchecked... I'm guessing it's just REFLECT_LITE_MULT that is checked by default.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Fri, 08 January 2010 at 12:42 PM

Yeah, caught it, pjz, thanks. Iย must have been looking for them either on the reflect node or right together with the reflection value on the Surface panel.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Fri, 08 January 2010 at 12:46 PM

Er... I take it having that checked by default is a new wrinkle in P8 or PP2010 Beta? because I just realized that I never had to go looking for that in the old Poser Pro and I got reflections fine....

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


pjz99 ( ) posted Fri, 08 January 2010 at 1:01 PM

Iย don't think it mattered until you got into P8's tone mapping or gamma correction.

My Freebies


Believable3D ( ) posted Fri, 08 January 2010 at 1:27 PM

Well, when I used Poser Pro, I used GC. Is there a different GC setup with the 2010 version, Iย wonder?

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Winterclaw ( ) posted Fri, 08 January 2010 at 1:58 PM

Quote - > Quote - Uncheckย REFLECT_LITE_MULT - it is bad - makes no sense - never let it be on

Uncheckย REFLECT_KD_MULT - it is also bad

The default for this should be off if it's never useful.

If it should default to off, why does it default to on?

WARK!

Thus Spoketh Winterclaw: a blog about a Winterclaw who speaks from time to time.

ย 

(using Poser Pro 2014 SR3, on 64 bit Win 7, poser units are inches.)


pjz99 ( ) posted Fri, 08 January 2010 at 2:17 PM

Dumbness.

My Freebies


Miss Nancy ( ) posted Fri, 08 January 2010 at 2:37 PM

it's been checked by default since day 1 (poser 4).ย  old habits die hard.ย  back in those days all they had were refl. maps.



Anthanasius ( ) posted Fri, 08 January 2010 at 4:14 PM

Strange, usualy you always use Alt_Diffuse ... Why not in this case ?

Gรฉnรฉration mobiles Le Forumย / Le Site

ย 


Believable3D ( ) posted Fri, 08 January 2010 at 7:25 PM

file_446089.jpg

FWIW, Iย just posted a larger version of this variation to my gallery. Rendered in just under 20 minutes with PP2010 Beta.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


bagginsbill ( ) posted Fri, 08 January 2010 at 9:36 PM ยท edited Fri, 08 January 2010 at 9:37 PM

Quote - Strange, usualy you always use Alt_Diffuse ... Why not in this case ?

I usually have to do GC in the shader, which means I have to take over what the root node usually does.

The root nodes does not let me add GC to it after. There is nothing I can do to add anything after the root node.

So ... I usually do not use anything built into the root node. I use the Alternate_Diffuse channel, which is pretty much a channel that exactly defines the output, without any more interpretation by the root node. When you see me use the Alternate_Diffuse channel of the root node, and pretty much nothing else, you can assume I'm doing that because the Root node is useless to me, is no advantage, and I wish it were gone in that case.

However, with Poser Pro 2010, I do not need to do GC in the shader. It will be done after the root node automatically. Which means the Root node math is very helpful. It contains, built in, a Diffuse node, a Specular node, and lots of other things, and it adds them all together.

Do I need the root node to provide all these things?ย No - I can do them myself and add them together. But when the root node does the job of 5 other nodes, (so long as GC is taken care of by the renderer, not the shader) then I use the full features of the root node.


Renderosity forum reply notifications are wonky. If I read a follow-up in a thread, but I don't myself reply, then notifications no longer happen AT ALL on that thread. So if I seem to be ignoring a question, that's why. (Updated September 23, 2019)


Dead_Reckoning ( ) posted Sat, 09 January 2010 at 6:37 AM

file_446108.jpg

> Quote - Here's a little IDL amusement. > > Add a one sided square. Set its scale to 1000%. Set xScale to 600%. This makesย a wall.

And What grreat fun this is to experiment with.

I have a question or two for The Jedi Master of Poser Nodes.

Is it possible to have something like a Wall texture surrounding the White Light Panels?

Is it possible to use something like the 3d Clouds Node for the White Panels?

I tried using Blender or the Ambient Color with limited sucess.

Thanks

"That government is best which governs the least, because its people discipline themselves."
Thomas Jefferson


Believable3D ( ) posted Sat, 09 January 2010 at 12:33 PM

I'm assuming is that what it comes down to is whether the mortar is tweakable.

I'm assuming one could plug texturing nodes into the Mortar_Color parameter (on the Tile node), no?

(I don't have time to open Poser @ the moment to test, but it sounds doable to my very limited knowledge.)

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


rjjack ( ) posted Sat, 09 January 2010 at 12:48 PM

file_446148.jpg

just plug your color/texture on the Tile node, Tile_1 Tile_2 or Mortar color , you must change the top math_function by a Color_Math otherwise you get only grey color


rjjack ( ) posted Sat, 09 January 2010 at 12:52 PM

file_446149.jpg


Believable3D ( ) posted Sat, 09 January 2010 at 12:58 PM

file_446150.jpg

That's pretty cool, rjjack. But I think mariner was asking about the mortar - the area *surrounding* the white panels.

This looks pretty bad, because I just threw a node on the Mortar_Color and didn't do much tweaking. But just had to make sure it could be done. :)

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Dead_Reckoning ( ) posted Sat, 09 January 2010 at 1:12 PM

file_446151.jpg

> Quote - That's pretty cool, rjjack. But I think mariner was asking about the mortar - the area *surrounding* the white panels.

You are most correct.
Something like Wall paper or Paint that one would see in and Airline terminal.

It would also be most interesting "IF" the White Areas could having something like clouds or an Outdoor scene. Something like one may encounter when traveling through the terminal.

Cheers
DR

I really like how these panels work with a Character.

Aging Mike.

"That government is best which governs the least, because its people discipline themselves."
Thomas Jefferson


Dead_Reckoning ( ) posted Sat, 09 January 2010 at 1:17 PM

file_446152.jpg

Mike in the Airline Terminal

"That government is best which governs the least, because its people discipline themselves."
Thomas Jefferson


Believable3D ( ) posted Sat, 09 January 2010 at 1:17 PM

file_446153.jpg

Another quick example, with colour.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Sat, 09 January 2010 at 1:18 PM

file_446154.jpg

My settings reflect the fact I was experimenting. Ignore the blue on the Mortar_Color.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Sat, 09 January 2010 at 1:20 PM

Hm, I guess that blue was doing something, but I'm guess it was acting in greyscale (?). Anyway, lots of fun to play with.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


rjjack ( ) posted Sat, 09 January 2010 at 1:23 PM ยท edited Sat, 09 January 2010 at 1:24 PM

Quote - Hm, I guess that blue was doing something, but I'm guess it was acting in greyscale (?). Anyway, lots of fun to play with.

you use a math_function replace with a Color_Math the math_function_4


Believable3D ( ) posted Sat, 09 January 2010 at 1:26 PM

Thanks. That's not working for me so far. Only colour I'm getting is what I set the Ambient_Color at.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


rjjack ( ) posted Sat, 09 January 2010 at 1:38 PM

file_446155.jpg

maybe this, plugged in the Diffuse_Color


Dead_Reckoning ( ) posted Sat, 09 January 2010 at 2:31 PM

Sweet

Could you show a capture of the Material room for this?

Thanks

How about a Caustic or Gel?

Quote -
maybe this, plugged in the Diffuse_Color

"That government is best which governs the least, because its people discipline themselves."
Thomas Jefferson


Believable3D ( ) posted Sat, 09 January 2010 at 2:34 PM

I think rjjack just means that's an image map plugged into Diffuse_Color.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


Believable3D ( ) posted Sat, 09 January 2010 at 2:37 PM

file_446156.jpg

Heh heh. This is looking pretty funky. A render of an old render with texture plus reflection.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


IsaoShi ( ) posted Sat, 09 January 2010 at 3:25 PM

file_446160.jpg

.. or you could use a procedural. This is one of bb's own shiny marble shaders, plugged into the PoserSurface node, and turning the internal diffuse off. (I did not bother to scale the marble to suit the wall, I just loaded and rendered).

"If I were a shadow, I know I wouldn't like to be half of what I should be."
Mr Otsuka, the old black tomcat in Kafka on the Shore (Haruki Murakami)


Believable3D ( ) posted Sat, 09 January 2010 at 3:49 PM

file_446164.jpg

This sort of thing could be usable if I knew how to have it tile horizontally and avoid texture stretching.

However, mariner, I thought your question had to do with placing images on the light sources, not the "wall/mortar" sections - like the lit billboards in public places.

______________

Hardware: AMD Ryzen 9 3900X/MSI MAG570 Tomahawk X570/Zotac Geforce GTX 1650 Super 4GB/32GB OLOy RAM

Software: Windows 10 Professional/Poser Pro 11/Photoshop/Postworkshop 3


  • 1
  • 2

Privacy Notice

This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.