A360_Cloud_Rendering : RendererClass

A360_Cloud_Rendering - superclass: RendererClass; super-superclass:MAXWrapper - 14:7 - classID: #(862667290, 1464541674)

Exposes the A360 Cloud Renderer to MAXScript. It allows you to upload render tasks to the Autodesk Cloud for rendering. Available in 3ds Max 2016 and higher.

Constructor

 A360_Cloud_Rendering...
A360Renderer... 

Properties:

<A360_Cloud_Rendering>.UserLoggedIn     BooleanClass    default: false   --  boolean

Returns True if the user is logged in, False if not logged in. Setting this value to True using MAXScript has no effect. Exposed by the Jobs Mixin Interface.

<A360_Cloud_Rendering>.RenderType     String    default: "image"   --  string

Gets/sets the state of the "Output Type" drop-down list as a string value. Possible values are:

Attempting to assign any other string value will cause a runtime error and will also print an error message to the MAXScript Listener listing the possible values.

<A360_Cloud_Rendering>.Quality     String    default: "draft"   --  string

Gets/sets the state of the "Render Quality" drop-down list as a string value. Possible values are:

Attempting to assign any other string value will cause a runtime error and will also print an error message to the MAXScript Listener listing the possible values.

<A360_Cloud_Rendering>.Width     Integer    default: 640   --  integer

Gets/sets the width of the render output in pixels.

<A360_Cloud_Rendering>.Height     Integer    default: 480   --  integer

Gets/sets the height of the render output in pixels.

<A360_Cloud_Rendering>.Exposure     String    default: "Advanced"   --  string

Gets/sets the state of the "Exposure" drop-down list as a string value. Possible values are:

Attempting to assign any other string value will cause a runtime error and will also print an error message to the MAXScript Listener listing the possible values.

<A360_Cloud_Rendering>.Format     String    default: "JPEG"   --  string

Gets/sets the File Format to render to as a string value. Possible values are:

Attempting to assign any other string value will cause a runtime error and will also print an error message to the MAXScript Listener listing the possible values.

<A360_Cloud_Rendering>.NotifyByEmail     BooleanClass    default: false   --  boolean; Notify_me_by_e_mail_when_complete

Gets/sets the state of the "Notify me by e-mail when complete" checkbox. When set to True, the logged in user will be notified by email when the job is completed using the email address from the user's registration. When set to False (default), no email notification will be sent.

<A360_Cloud_Rendering>.lastJobs     String    default: "[]"   --  string

Contains a string describing the last jobs of the logged in user.

<A360_Cloud_Rendering>.WaitingTime     Integer    default: -1   --  integer

Contains the waiting time in seconds.

Contains -1 when not logged in.

<A360_Cloud_Rendering>.CheckPricePending     BooleanClass    default: false   --  boolean

Contains True when the price check is pending.

Contains False when not logged in, when the price check has not been initiated, or when the price check has finished.

<A360_Cloud_Rendering>.CheckPriceReceived     BooleanClass    default: false   --  boolean

Contains True when the price has been received.

Contains False when not logged in or the price has not been received yet.

<A360_Cloud_Rendering>.CreditsAvailable     Integer    default: -1   --  integer

Contains the number of available credits on the logged in user's account.

Contains -1 when not logged in.

<A360_Cloud_Rendering>.CreditsNeeded     Integer    default: -1   --  integer

Contains the number of credits needed to render the job.

Contains -1 when not logged in.

A360_Cloud_Rendering interfaces:

Interface: IMtlRender_Compability_Renderer

Properties:

No properties exposed.

Methods:

No methods exposed.

Actions:

No actions exposed.

Interface: jobs

Properties:

<A360_Cloud_Rendering>.lastJobs : string : Read
<A360_Cloud_Rendering>.UserLoggedIn : boolean : Read
<A360_Cloud_Rendering>.CheckPricePending : boolean : Read
<A360_Cloud_Rendering>.CheckPriceReceived : boolean : Read
<A360_Cloud_Rendering>.CreditsNeeded : integer : Read
<A360_Cloud_Rendering>.CreditsAvailable : integer : Read
<A360_Cloud_Rendering>.WaitingTime : integer : Read

Methods:

<string><A360_Cloud_Rendering>.QueryJobInfo <string>jobID

Returns information about the job with the specified ID.

The ID can be extracted from the .lastJobs string.

Actions:

No actions exposed.

EXAMPLE

   Autodesk360.InitializeWebServices()
   -->true
   a360=A360_Cloud_Rendering()
   -->A360_Cloud_Rendering:A360_Cloud_Rendering
   renderSceneDialog.close()--close the render dialog
   -->OK
   renderers.current = a360 --assign the A360 renderer 
   a360.UserLoggedIn --check if the user is logged in 
   -->false
   --Log in if not logged in yet:
   if not a360.UserLoggedIn do Autodesk360.Login()
   -->true
   a360.UserLoggedIn    --check if the user is logged in now 
   -->true
   Autodesk360.getLoginUserName()--get the login name
   -->"yourname"

   renderers.target --check the target mode
   -->"local"
   renderers.target = "cloud" --set it to cloud rendering
   -->"cloud"
   renderSceneDialog.open() --re-open the render dialog
   -->OK

   a360.RenderType = "image" --render image
   -->"image"
   a360.Quality  = "standard" --increase quality from draft to standard
   -->"standard"
   a360.Exposure = "Native" --change the exposure from advanced do native
   -->"Native"
   a360.Width = 1000
   -->1000
   a360.Height = 750
   -->750
   a360.Format = "PNG" --set the format to Portable Network Graphics
   -->PNG
   a360.NotifyByEmail = true --send the user an email when done
   -->true
   a360.CreditsNeeded --see how many credits are needed
   -->0
   a360.CreditsAvailable --see how many credits are left
   -->25
   --If there are enough credits, submit the job to the A360 Cloud
   if a360.CreditsNeeded <= a360.CreditsAvailable do max quick render
   -->OK    
   a360.lastJobs 
   -->"[  ]"
   a360.WaitingTime
   -->0
   --Filter the last jobs string to create an array of strings
   theFilteredJobs = filterString  a360.lastJobs  ":[]{} \","
   -->#()
   --Print information about the last jobs:
   for i = 4 to theFilteredJobs.count by 4 do
     format "%\n" (a360.QueryJobInfo theFilteredJobs[i])
   -->OK