Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - makco

Pages: [1] 2
1
We have made public at Moso Studio our internal HDRI quick Environment script.(free to use)
Is a tool developed over the years to streamline the usage of HDRI libraries; The latest version includes spinners to locate a sun accurately based on geographic location and time.


The link can be found on our blog. (www.moso-studio.com)

Enjoy!

Best,

M.

2
OK i see!
Glad you sorted.

3
I would use a sun without a target (as suns position is irrelevant in corona), and just worry about the 3 axis rotation.
Try the below:
Code: [Select]
sun =Coronasun()
sun.name = "scriptedSun2"
sun.position = [0,0,300]
sun.targeted =false
fn easyRotation obj x y z =
(
try(obj.rotation.x_rotation = 90-x)catch() -- Invert the height as 90 should be up and 0 should be down for the sun
try(obj.rotation.y_rotation = y)catch()
try(obj.rotation.z_rotation = z)catch()
)

easyRotation Sun 0 0 0

4
[Max] Resolved Bugs / Re: Anima + motion blur issue
« on: 2019-05-08, 23:14:48 »
I'm using 3.5.3 and corona 3 hotfix 1, and noticed the motion blur on anima objects only works when is more than 720 degrees. If you just have 180 degrees or even 360 (which is what is mostly use when recording film) we still get that in between motion blur that is like a double image.. So is kind of useless as 720 degrees is basically 1/15th of a second shutter (runing at 30fps) which is too much motion blur... hope this gets fully fix sometime.

5
Maru,
Relevant parts of the file, have been archived and uploaded (Cyclist Mblur Issue.max)

M.

6
Hi Maru,
Will collect and upload as soon as i can.

M.

7
[Max] Bug Reporting / Motion Blur bug when using Auto Smooth
« on: 2019-03-06, 20:12:37 »
Dear Corona Team,

I think i found what looks like a bug... I have an animated skinned character... i needed to put a smooth modifier after skinning... and when i turn auto smooth motion blur stops working.. See video below.

8
Hi Sequana,

Yes the renaming feature can be a bit bothersome, and gets a bit messy when lights get removed and added to different light select elements; I included a checkbox (by default off) to avoid renaming the lights; I also added a Warnings off checkbox... to keep them off if you don't want to see them.
https://www.dropbox.com/s/cpdl7m88sd97w9h/Light%20Select.mzp?dl=0

But actually, that message about the duplicates was referring to something else.. if you see on the top there is a checkbox to "Prevent Duplicates", the point of this is that if you have your render element LSE_Top and have  lights A, B and C on it and then you create a new light select element lets say LSE_Bottom and add light A (that was already on LSE_Top) it will remove it from LSE_Top to prevent having the same light in two different light select elements (this is because of our workflow later in NUKE) however if you do not care and purposely want to have lights A, B and C on two light select elements, then you need to turn the first checkbox of the script "Prevent Duplicates".

Hope this was clear, and thanks for the feedback.

M.

9
Sequana,

Thanks for sending this.
I found the issue, was due to the fact that your render element names were not the same as the ones the script created. I created an exception for these instances, so you can still use your names and script will not fail.
Please download the latest version here, and let me know if this works now.
https://www.dropbox.com/s/cpdl7m88sd97w9h/Light%20Select.mzp?dl=0

M.

10
Sequana,

Are you using the latest version that is on the dropbox? If you are, can you take a look at the maxscript listener error and send me a capture of that?
And if possible send me the scene (only the lights) I will take a look...  I can't seem to replicate the error here.

Thanks,

M.

11
In case anyone is using this, below is a link with the scripts (lightselect for 3dsmax has been updated, just drag on the viewport and should then be up-to-date).
We just fixed a little issue happening when lights get deleted after render light select elements are created.(as corona keeps a ghost of the deleted light with the name deleted on the list).

https://www.dropbox.com/sh/te144s36zuuygtu/AABMb-05DZfuIRcARbhV6R_xa?dl=0


M.

13
We have just finished developing a couple of scripts that we wanted to share with the hope that they can be useful to others.

We are big fans of the light mixer and is already an amazing tool as it stands... we found a few things, however, that could make its usage a bit more efficient and convenient, so we wrote two scripts.

Below is a video showing how they work:


The scripts are attached here.
We have used them already in a few projects and it has been very useful, especially in Nuke, but also to make the process in 3dsmax a bit easier.
If you are installing the python script on nuke you need to add the following lines to your menu.py:

Code: [Select]
import LightMixer

nuke.menu('Nuke').addCommand('Scripts/Light_Mixer', 'LightMixer.LightMixers()')
nuke.menu('Nuke').addCommand('Scripts/SHuffle_Channels', 'LightMixer.ChMask()')
nuke.menu('Nuke').addCommand('Scripts/Shuffle_All', 'LightMixer.AllChan()')


If you do use it please let us know what you think.
We will hope to post any updated versions and a bit more info in the blog of our website at Moso Studio.

M.




14
No, that's what I thought.. camera isn't moving... I'm just zooming in... that's what makes it very strange.

15
As an update, this happens as well when doing the same setup using CoronaLayer Mtl.
Vray seems to do the same... however it handles it better as one needs to zoom in extremely close for the shading to change.

Pages: [1] 2