Jump to content

Kevin Gillen

Members
  • Posts

    4
  • Joined

  • Last visited

Personal Information

  • Name
    Kevin Gillen
  • Location
    Asheville, NC

Kevin Gillen's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I am doing a RBD Fractured Solve. I want to use the Sop Solver through the Multi Solver to push and deform the objects to a final destination. I notice that when I transform the objects in the SOP Solver away from it's object center, it tends to do weird stuff. Like trying to still revolve around it's original pivot. Is there something I need to do to maintain a proper center pivot?
  2. Has anyone done any Sub Surface Scattering through volumes? Have any examples? Thanks
  3. Thanks so much edward. I ended up not doing exactly what you suggested, but what you wrote help me out big time. Here is what I acually had to do... set Q = "\"" ## Had to make a variable that was a quote. set VALUE = `strreplace(chsraw("./"+$script_parm),"$Q","KFIRGLLA")` ## Changed all double quotes to some wakey name. Using "\"" instead of "$Q" did not work. Then I could do all the hscript I wanted to do with no issues. chkey -t 0 -v 0 -m 0 -A 0 -F `strreplace($XVAL,"KFIRGLLA","\"")` `$script_parm`vx ## Then I was able to push this into a channel by nesting the strreplace inside the chkey and change the wakey string back to a quote. If I tried set TEMP = `strreplace($XVAL,"KFIRGLLA","\"")` , then uset $TEMP in the chkey, it didn't work. Sounds CRAZY... but it acually works. Thanks again edward for the help.
  4. Hello all, I've been having a reoccuring problem with hscript when it comes to double quotes. I am trying to do a simple operation where I copy a string field to another field, be it string, vector, or float. Here is an example: String Field: param = $TX+ch("../add1/pt0x") I try to do: set VALUE = `chsraw("./param")` opparm . new_param ( $VALUE ) and I get this in the new field: $TX+ch(../add1/pt0x) I loose the double quotes. I've tried everything I can think of to preserve the double quotes, but no luck. Is there an answer I am not seeing? Thanks
×
×
  • Create New...