[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/3/ - 3DCG


View post   

File: 151 KB, 254x324, 1495527710610.png [View same] [iqdb] [saucenao] [google]
654385 No.654385 [Reply] [Original]

>tfw using mari,houdini, and nuke

is there a greater feel?

>> No.654393

>>654385
Yes, add renderman!

>> No.654395

>>654393
>renderman

as much as i want to i use an AMD gpu so i'm stuck with pro render

>> No.654396

>>654395
It's not a GPU renderer! it's damn fast for a cpu renderer. Do it anon. Although I don't think you can get renderman 21 for Houdini anymore so you will have to rib and ris your stuff and render through the command line.

>> No.654397

>>654395
Oh I mean to ask how do you like your amd gpu? I was thinking of getting a radeon pro but I am worried about how well it plays in Linux with Mari.

>> No.654399

>>654397
it's alright. it runs a bit hot though so your mileage may vary. for the most part i can't complain but i feel like an nvidia card would be a better choice simply due to real time raytracing and optix denoising in conjunction with each other would lead to some nice stuff. that being said i hear amd is doing something similar, so i dunno. prorender as it stands has a really nice uber shader in maya. i can't complain at all about it. it's kinda like a super advanced version of the principled pbr shader that eevee uses in blender if you're informed about that, just it's a pathtracer so it's super refined on realism without TOO much tweaking. i just wish i could use it on houdini. hardware wise i can't complain though. the card runs fine. i'll try out renderman too btw

>> No.654408

>>654397
Don't get an AMD card if you want to do 3D. That's just a shitty decision.

>> No.654413

>>654408
gotta back that up with some facts. AMD has the best openCL performance. But no CUDA performance. It's a trade off. They also have the cheapest HBM2 cards which have crazy bandwidth. The only thing that really sucks about AMD cards is you are locked out of the CUDA renderers, Octane, Redshift etc.

>> No.654415

>>654413
giving the fact that Octane will soon be available for free for Blender and Arnold GPU might be a thing soonish, being locked out of the best Render engines is a bad decision. Then there is Renderman with its CPU+GPU mode also coming in the near future. I don't know which of these will only run on CUDA, but i wouldn't risk it.

>> No.654432

>>654385
Yes
>Raw, unadulterated shader programming
even better:
>Making your own electrical components and building your computer which runs your own OS and engine that is essentially a mega engine which can do most kind of styles and can morph it's design from OOP to Component to functional when needed
I wish...

>> No.654468

>>654432
have you tried C++? i think it's pretty multi paradigm-ish.

>> No.654471

>>654385
>is there a greater feel?

Yes, using Blender

>> No.654476

>>654471
>t. brainlet

>> No.654478

>>654471
Blender can't do what Mari, Houdini and Nuke does.
So you feel greater, but you can't keep up with the big boys.

>> No.654493

>>654385
>mari
You do know Substance exists, right?

>> No.654498

>>654493
not the same. Not even close. Substance is good in it's own right but Mari stands apart.

>> No.654499

>>654493
> substance
anon stop baiting with your PBR shit

>> No.654503

>>654498
>>654499
I use both. I bake in Substance Painter, then i export useful smart masks, create tile-able materials in Designer, then throw it all into Mari and build from there.

>> No.654505

>>654503
hmm. i would always figure people bake their stuff in zbrush or whatever they're modelling in, then take those maps into mari to color or w/e, then take it into maya/houdini/whatever to make their shader network on top of the maps. so you could have an AO map you made in mari then give it its own shader network, same with spec/gloss, fresnel, clear coat, subsurface, and so on. didn't think about tiling materials before.

>> No.654506

>>654468
Yeah, I do C++ and C#, but I'm talking about changing entire workflows. It would fit into a dropdown and the engine changes. That's ideal though, the work would be too much in reality, for me at least.

>> No.654507

>>654503
absolutely nothing wrong with that workflow. I do it myself when it makes sense too. This is an area Mari will get stronger in. Competition is good!
https://youtu.be/rMPigJxGB6E?t=2002

>> No.654523

>>654506
not that guy but I tried to write my own engine for the past 3-4 years in C++. There are so few tutorials out there on how to do basic shit like use a debugger like nsight, and when you do use nsight it crashes all the time. And then you end up with huge holes in your engine cause people wont share information and you have to go onto forums like gamedev.net and beg for help and you get shit advice by people already with their own engines and then those people there start arguing.

It really is a clusterfuck. For example me I couldnt understand how to get models to animate with skeletal bones despite posting
and reading numerous threads over there so I just have assimp which is shitty and takes forever to load a model because you cant save to a binary. So my engine is pretty much just cubes and overall its horribly optimized. I feel like shit for wasting the past 3-4 years tbqh. People dont want to share their secret recipes at this point in time for the good stuff that you actually need to write a decent, modern engine

>> No.654527

>>654385
>is there a greater feel?
Yes. Being able to afford them.

>> No.654561

>>654523
>I couldnt understand how to get models to animate with skeletal bones
Aren't those hierarchical transform entities that interpolate using time? You also would have to implement skinning to associate vertices with the bones. And as for importing models, you could implement your own loader, if you have the time. assimp seems to be using magic tokens and file extensions to identify what format it is.

>> No.654570

>>654561
>Aren't those hierarchical transform entities that interpolate using time?
of course

but its not that simple, i just kept getting shit results day after day then posted for help on gamedev and they couldnt help me either. The only (((working, compilable))) example I can find actually uses assimp which again has the limitations. I just kept going around in circle, feeling more and more retarded

>> No.654575

>>654570
I see. That hits home. But again, if you have the time, you could study assimp and make your own loader based off your new knowledge, you wouldn't have to ask anyone about anything at that point.