Re: SetValue question...

2013-10-07 Thread Edy Susanto Lim
Sometimes, I find reading from Info Selection is easier for a quick type check . Shift + Enter on the selected object. for a more detailed nested objects and parameters, port connections etc, SDK Explorer is the way to go. -edy On Tue, Oct 8, 2013 at 5:03 AM, Matt Lind wrote: > LogMessage( .T

Re: Siggraph Tech papers 2013

2013-10-07 Thread Raffaele Fragapane
Disney's paper planes one? If that: Yeah, that's more software dev than anything :) On Tue, Oct 8, 2013 at 9:41 AM, David Rivera wrote: > Yes, I was after that one where it interpolates hand painted textures on > 3d surfaces. > I really like that application. I found it but without the software

Re: Siggraph Tech papers 2013

2013-10-07 Thread David Rivera
Yes, I was after that one where it interpolates hand painted textures on 3d surfaces. I really like that application. I found it but without the software that does the interpolation on keyframes for 3d painting I see it difficult to replicate the effect. Thanks for the suggestion tho. David.

Re: ICE Shape Node expressions linked to Custom Property Parms breaking on reload

2013-10-07 Thread Eric Thivierge
Yeah go the way that Dave is suggesting. No reason to have expressions when you can pull the params directly. Just make sure you use the tools I'm the user menu to use this model. On Oct 7, 2013 6:30 PM, "David Barosin" wrote: > I would bring the parameters in directly into the ice tree using a g

Re: ICE Shape Node expressions linked to Custom Property Parms breaking on reload

2013-10-07 Thread Peter Agg
Yep, always with a straight Get Data node - just be sure to use 'this_model' as there can be some issues if you export with one name and import with another. On 7 October 2013 23:30, David Barosin wrote: > I would bring the parameters in directly into the ice tree using a get > data node rather

Re: ICE Shape Node expressions linked to Custom Property Parms breaking on reload

2013-10-07 Thread David Barosin
I would bring the parameters in directly into the ice tree using a get data node rather than an expression. On Mon, Oct 7, 2013 at 6:14 PM, Jeffrey Dates wrote: > Hiya guys, > > I'm running into something I don't remember coming across before and was > hoping you guys can point out what I'm doi

ICE Shape Node expressions linked to Custom Property Parms breaking on reload

2013-10-07 Thread Jeffrey Dates
Hiya guys, I'm running into something I don't remember coming across before and was hoping you guys can point out what I'm doing wrong. I have an ICE Shape mixer controlled by a Custom Property Params.. ( just expressioned an == to the weight. ) Nothing fancy. However, when the scene is relo

Re: Scntoc Res Manager v 1.0 released

2013-10-07 Thread Alok Gandhi
I fixed the issue. The addon should work now in python 2.7. Haven't tested it on 2014, but I think it should be fine. Please do let me know in either case it works or not. Thanks. You can download @: http://bit.ly/16tXA13 On Wed, Apr 24, 2013 at 5:03 AM, Cristobal Infante wrote: > Hi Alok, >

Re: Create Empty Mesh via Object Model?

2013-10-07 Thread Eric Thivierge
Wow... it was that easy huh. Thanks! On Monday, October 07, 2013 2:55:07 PM, Vladimir Jankijevic wrote: > Application.ActiveProject.ActiveScene.Root.AddPolygonMesh() > > > On Mon, Oct 7, 2013 at 2:47 PM, Eric Thivierge > wrote: > > Searched around the docs and

Re: Create Empty Mesh via Object Model?

2013-10-07 Thread Vladimir Jankijevic
Application.ActiveProject.ActiveScene.Root.AddPolygonMesh() On Mon, Oct 7, 2013 at 2:47 PM, Eric Thivierge wrote: > Searched around the docs and it doesn't seem you can create an empty > polygon mesh via the Object Model, only using the > GetPrim("EmptyPolygonMesh") command. Anyone know if it is

Create Empty Mesh via Object Model?

2013-10-07 Thread Eric Thivierge
Searched around the docs and it doesn't seem you can create an empty polygon mesh via the Object Model, only using the GetPrim("EmptyPolygonMesh") command. Anyone know if it is possible? Thanks, Eric T. -- To unsubscribe: mail softimage-requ...@listproc.autodesk.com with

I think it's Ice, and I think it's nice !

2013-10-07 Thread olivier jeannel
https://vimeo.com/75490500 -- To unsubscribe: mail softimage-requ...@listproc.autodesk.com with subject "unsubscribe" and reply to the confirmation email.

Re: SetValue question...

2013-10-07 Thread Christopher Crouzet
http://stackoverflow.com/questions/1911281/how-do-you-get-list-of-methods-in-a-python-class But if you simply want to inspect the methods just for your own information and not with the objective to do some sort of dynamic object manipulations in your code, then the SDK doc should be your best frie

Re: SetValue question...

2013-10-07 Thread Stephen Blair
You could use the SDK Explorer On Mon, Oct 7, 2013 at 9:34 AM, Sergio Mucino wrote: > Thanks a lot for the awesomely clear explanation Matt. I'll start getting > into the Object Model documentation and see what I can start using. > Just to cut it a bit shorter, what are the standard inspection

Re: Siggraph Tech papers 2013

2013-10-07 Thread Daniel Brassard
http://kesen.realtimerendering.com/sig2013.html On Sun, Oct 6, 2013 at 8:03 PM, Raffaele Fragapane < raffsxsil...@googlemail.com> wrote: > A lot of them are available for free, some are exclusive to ACM members. > Anything in particular you're after? > > > On Mon, Oct 7, 2013 at 5:36 AM, David R

Re: PPG.Logic in vbscript

2013-10-07 Thread Stephen Blair
Put it in a file, or do something like this: oLayout.Logic = "sub Randomize_OnClicked" & vbCrlf & " PPG.Data.Value = Rnd" & vbCrlf & "end sub" On Mon, Oct 7, 2013 at 6:05 AM, Szabolcs Matefy wrote: > Hey folks, I wrote a script and now I’d need add the logic from the > script. In Jscript th

PPG.Logic in vbscript

2013-10-07 Thread Szabolcs Matefy
Hey folks, I wrote a script and now I'd need add the logic from the script. In Jscript there is the ToString() method to convert a function into string, how can I do it in vbscript? I do not want to create a self-installing stuff, because the layout and functions need to change dynamically...