Notifications
Clear all

[Closed] How to Count Render Time?

Hi…i’m newbie in maxscript. Actually i started with modeling and animating few years ago. BTW, now i’m doing my tools to create GI fake with dome lighting. Then i will compare it with some lighting methods. To eveluate the performance i’ll use render time. The problem is How to count render time? is there any function to count render time in maxscript? need help…thx

2 Replies

You might want to check out these…

http://www.scriptspot.com/3ds-max/array-dome-lighting

http://www.scriptspot.com/3ds-max/dome-light

I think you’re looking for timeStamp(), check the Maxscript help for more info on it…


start = timeStamp()
render()
end = timeStamp()
format "Rendering took % seconds
" ((end - start) / 1000.0)

Thx bro…i’ve already checked out that script. Yeah, that’s it, time stamp…ha2 it really help. I’ve been searching for render time, but it’s the wrong query, i’ve found nothing. Thx bro…