Chaos Corona Forum

Chaos Corona for 3ds Max => [Max] General Discussion => Topic started by: stevennie on 2014-03-24, 16:43:20

Title: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-24, 16:43:20
everything is guessssssssssssssssssssssssssssss

show renders.current????????????
gets some parameters,but,all guessSSSSSSSSSSSSSSSSSSSSSS
Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-24, 16:45:54
You shouldn't lick the toads.

Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-24, 16:53:53
renderers.current.reset_settings
-- Unknown property: "reset_settings" in CoronaRenderer:CoronaRenderer
-- Unknown property: "resetSettings" in CoronaRenderer:CoronaRenderer
-- Unknown property: "reset" in CoronaRenderer:CoronaRenderer

Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: Ondra on 2014-03-24, 16:58:09
Reset settings is in a static interface, use CoronaRenderer.CoronaFp.resetSettings()

And this is your last warning, watch the language/attitude towards other forum members!
Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-24, 17:03:25
Reset settings is in a static interface, use CoronaRenderer.CoronaFp.resetSettings()

And this is your last warning, watch the language/attitude towards other forum members!

Out of interest, do you have any documentation on maxscript and Corona?
Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-24, 17:09:44
one questiong ......one answer.....

what a mysterious~~~

what should I say....thankkss
Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: Ondra on 2014-03-24, 17:16:40
Reset settings is in a static interface, use CoronaRenderer.CoronaFp.resetSettings()

And this is your last warning, watch the language/attitude towards other forum members!

Out of interest, do you have any documentation on maxscript and Corona?

not yet
Title: Re: wtf!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-24, 17:18:59
not yet

Thanks anyway. I managed to do most of the things I needed without it.

Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Juraj on 2014-03-24, 18:03:50
So, what's going on around here..
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Ondra on 2014-03-24, 18:14:14
little afternoon rage ;)
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Alex Abarca on 2014-03-24, 23:27:31
Why can you just make a default corona render 'rps' and revert back when you need to.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-25, 01:13:59
help~~~~
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: maru on 2014-03-25, 10:10:25
Why don't you just click those buttons and see what they do? Most of the things you marked are pretty obvious...
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-25, 11:47:08
I need these codes write in my scrits....so..
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Ondra on 2014-03-25, 13:24:01
btw, you can get name of every action/parameter using macro recorder, right?
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-25, 13:34:07
btw, you can get name of every action/parameter using macro recorder, right?

Not the render setup window stuff.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-25, 13:46:28
I do that,,,but no response...
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: racoonart on 2014-03-25, 16:13:00
use
Code: [Select]
showproperties renderers.currentand you'll get a complete list of all settings that have a maxscript command, you just have to figure out which is the right one.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-25, 16:29:56
 DeadClown~
thanks

but "showproperties renderers.current" ==  "show renderers.current"

some codes of renderSettings are still do not show me,,,

e.g.
"reset settings" in "Actions"
   !!!! -------------------------->>>>>>>>>>>>>>   CoronaRenderer.CoronaFp.resetSettings()

WHERE SHOULD I GOT THIS??!! USE "showproperties renderers.current" OR  "show renderers.current" ????
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: pyrro7 on 2014-03-25, 17:17:42
...He was able to read,write and to make print screens...but not very convincing in expressing his fellings...:))
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Alex Abarca on 2014-03-25, 18:52:59
Press F1
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: racoonart on 2014-03-25, 18:55:52
but "showproperties renderers.current" ==  "show renderers.current"
I know, but didn't know you were already using that one.

e.g.
"reset settings" in "Actions"
   !!!! -------------------------->>>>>>>>>>>>>>   CoronaRenderer.CoronaFp.resetSettings()

WHERE SHOULD I GOT THIS??!! USE "showproperties renderers.current" OR  "show renderers.current" ????
First of all please stop your excessive usage of caps lock and gazillions of "!" and "?". It's really annoying. We're here to help you so please act that way.

Concerning your problem:
you can use
Code: [Select]
showinterfaces renderers.current
to get a list of all methods available, it will print out that:
Code: [Select]
Interface: CoronaFp
   Properties:
   Methods:
    <integer>showVfb()
    <integer>resumeRender()
    <integer>loadAndResume <string>exrFilename
    <integer>dumpVfb <string>exrFilename
    <integer>parseViewexp_INTERNAL <maxObject>viewExp <maxObject>outCamera
    <integer>setDisplayedChannel <integer>channel
    <value>getVfbContent <integer>channel <boolean>toneMapping <boolean>renderStamp
    <integer>resetSettings()
    <integer>renderElements <boolean>useAntialiasing

You probably can't know that you need to use "CoronaRenderer" directly as class instead of renderers.current, but that's why this is a forum where you can ask such things.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-26, 00:58:21
sweet!

thanks!
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-26, 13:59:08
help  >.< please...
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Tanakov on 2014-03-27, 09:55:25
This Guy has some issues :)

Wonder what kind of scriptbis he making.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: stevennie on 2014-03-27, 14:52:48
something like solidrocks~ ;)
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Ludvik Koutny on 2014-03-27, 14:58:42
(http://2.bp.blogspot.com/-rka-fTSsn-I/Ut_XnqqLZyI/AAAAAAAAFp4/r8M7Imm3GZc/s1600/picard-facepalm-o.gif)
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: borisquezadaa on 2014-03-27, 15:44:31
Jean Luc has a solid point there. XD.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-27, 15:52:22
Surely it will only be a render button? Corona doesn't have many settings (the beauty of an unbiased render).

Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: fellazb on 2014-03-27, 19:45:48
(http://2.bp.blogspot.com/-rka-fTSsn-I/Ut_XnqqLZyI/AAAAAAAAFp4/r8M7Imm3GZc/s1600/picard-facepalm-o.gif)

So funny!

especially with Data in front of Picard, kinda fits it all together.
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: Ludvik Koutny on 2014-03-27, 21:03:54
The entire point of Corona is that it should be easy enough to set up so that people do not need to pay for or download plugins just to do something as essential as set up rendering :)
Title: Re: oh my CoronaRenderer dot what????!!!!!!!!!!!!!!!!
Post by: zzubnik on 2014-03-27, 21:09:22
The entire point of Corona is that it should be easy enough to set up so that people do not need to pay for or download plugins just to do something as essential as set up rendering :)

And in both install and use, it meets these goals. It could not be easier to use.