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 - ichinozori

Pages: [1]
1
[Max] I need help! / Re: Rendering Issues
« on: 2025-07-03, 11:57:06 »
Thank you everyone! i did it now!

2
[Max] I need help! / Rendering Issues
« on: 2025-06-30, 12:43:14 »
How do I make certain sides (like the image I attached) render properly so they don't look like this and how do I make the original textures render in HD so they don't look blurry?

3
Hello everyone, I first want to thank several people who have helped me overcome the problems I experienced in the post I published previously.

Now I want something that can minimize processing time, namely automatically arranging all materials in the "Reflection" and "Scale" sections in the material editor menu.
I have previously tried asking ChatGPT but every script provided always does not work as I expected, below I have attached the detailed section marked in red for the settings I want to make which can change automatically as I expected from "1.0" to "0.0"

and this is script that ChatGPT wrote to me
Quote
allMaterials = getClassInstances PhysicalMaterial

if allMaterials.count > 0 then
(
    for mat in allMaterials do
    (
        if mat.hasProperty #reflectivityMap then
            mat.reflectivityMap.amount = 0.0
       
        if mat.hasProperty #subsurfaceScattering then
            mat.subsurfaceScatteringScale = 0.0
    )
    format "All Physical Materials have been updated.\n"
)
else
(
    format "No Physical Materials found in the scene.\n"
)

4
[Max] I need help! / Re: How to Remove This Color?!
« on: 2024-05-31, 05:36:36 »
OMG Thank you so much everyone!!
yeay it works good now!!!!

5
[Max] I need help! / How to Remove This Color?!
« on: 2024-05-30, 10:56:43 »
Hello everyone, I just registered here and I'm learning how 3D Render using Corona works.
Currently I am experiencing problems related to colors that I don't know where they come from, usually I use another Render and the results are as I expected, but strangely, when I use Corono Render, the side of the 3D object I have has a brown color that I don't know where the source is from. If you know how to make the color disappear, please tell me, because the image should be transparent on the object and not have any color. Thank You

This is the display in 3Ds Max 2023 :
and This is output after Render using Corona :

Pages: [1]