Jump to content

Tristus Patton

Resident
  • Posts

    51
  • Joined

  • Last visited

Everything posted by Tristus Patton

  1. that did it thank you soo much! Unlucky for me its not a magic fix like I was looking for :C oh well thanks everyone for the feedback
  2. Thanks for taking a look at this. I am trying to make body shapes for avatars, and want to make mesh cloths for these shapes. I have some idea how to do it but I think Im doing it the hard way. I was wondering if there was a way to copy the weighting from the body shape, to the clothing, to make it a much closer match. My understanding is that there is a 'copy weight' option in Blender 2.67a, but have been unable to find it. Any help you could give would be great. Thank you for your time.
  3. that wasnt 100% what I needed, but you've pushed me right where I needed to be, thank you once again for your help
  4. Hello, I was trying to figure out how to when you click in an area on a HUD to rotate a prim. What I mean is, the HUD with have the range you can rotate, and depending on where you click in that range, it will rotate on the Y axis to that rotation. The range is as high as 45.000, and as low as 315.000, for a child prim.and I only want that one prim to rotate. I know it will take a long time, but I was thinking I could script every degree of rotation into the HUD to do this. But I was hoping for something simple, and Im unsure of where to start. If I did have to script every poition I think I'd need to be able to find out how to tell if someone clicked within a triangle, but I dont know how to do that either. Thanks for any help you can give.
  5. see thats what I was thinking also. I have had an issue with script memory in past projects, so this may help? I dont know. I want a happy balance. Something that has enough memory to do what I need it to do, but still be low lag.
  6. Hello, thanks for clicking in. Im scripting something that has multi positions, and I use llSetLinkPrimitiveParamsFast, to change the position, size and rotation of child prims. There are 19 poitions, which have 3 prims that need to be moved. I use llSetLinkPrimitiveParamsFast, 19 times, but I was thinking that I can make it so I only have it once in the script itself, but for each of the 19 positions, it sets different variables which relate to the position, size and rotation of each prim, then it gets that one llSetlinkPrimitiveParamsFast to change everything. Ive done it I know its possible, my question though is what is better, like less lag? 19 llSetLinkPrimitiveParamsFast or one llSetLinkPrimitiveParamsFast, with 9 variables that change per position? I hope I explained this clearly, thanks for any help you can provide.
  7. neck was the only thing I could think of also.. but yeah i dunno lol.. Alright, thank you for feedback
  8. Ive seen it around SL, mostly with furry heads, there have a jaw that moves, which I know is done with an animation, but Im unsure what in the head would move like that.. I wish I had an example, but I dont. Basically what Im asking is: Where should I assign the vertex groups for a jaw that could be pose animated to something in the head? Im using a bones template I found on these forms, so basically I dont know a lot about what Im asking lol
  9. Is it possible to get notified when someone purchese an item I have for sell that is direct delivered?
  10. Ah ok, well that sucks.. thank you for the information!
  11. Hello, Ive been looking around for on how to "set object type to mesh". I basically want to be able to change between mesh Ive uploaded. Sorta like how one can change the Sculptie from one type to another, and mirror it and all.. Is that even possible with Mesh? Ive looked on the LSL Portal, and I didnt see anything about it. Thanks for your time.
  12. oh! I didnt see anything on the wiki about that in the link section, I was wondering what you were talking about, that will be very helpful! And the delay doesnt come from the SLPPS call, it comes from the "for", at least I still see the delay when Ive tried this out. Not sure Im doing it right though.. Thank you for the help, I shall play with it to see if I can get it to do what I want! EDIT: I think I might of found why it has a delay. Its because I do a llFindListFind of a list that has the name of the prims, and use that to get the link number for the SLPPS call thing.. So Im guessing to go from llFindListFind to llSetLinkPrimitiveParamsFast causes that 0.2 delay? Maybe??
  13. that "for" part of the script is where Im currently at. My issue is that when I use "for" is basically one at a time, I believe there is a .02 second delay, where it set the params for the one child prim then goes to the next. What Im looking for is where all the prims change at the same time. What I guess Im asking for is to load the information I need to use, then once its done loading this information change all the prims at basically the same time. I'd rather there be a moments delay, then to have basically one child prim move at a time. I dont really have any issue with making a list per prim, per position, but that sorta seems like a lot that has to be prewrote into the script. End game is I want people to be able to add to the notecard the name of the prim with params, and then the script takes that information and changes that prim correctly, all the while changing everything else at basically, as close as possible at the same time. EDIT: Though now that I take a closer look at your example.. I could basically for the "main prims" that Im going to make, I could simply find out which prims need to be changed, and use something like what you just did to make them all work at one time.. Question though, for SLPPF function call, if I wanted to do multi prims, would I have to have multi SLPPF function call? or can I just do something like llSetLinkPrimitiveParamsFast(1,[paramblahblahinfohere].2.[paramforsecondlinknumberhere]); Or would it have to be like llSetLinkPrimitiveParamsFast(1,[paramblahblahinfohere]); llSetLinkPrimitiveParamsFast(2,[paramforsecondlinknumberhere]);
  14. oh so its one list per prim for the parameters? Say for example I have an object that has 3 prims. Named Root (as the root prim), Red, and Green. I want to change the size, rotation, and position of Red, and Green, into a couple different positions. Red in position 1: list redONE = [PRIM_SIZE,<0.200000, 0.200000, 0.200000>, PRIM_ROT_LOCAL,<0.000000, 0.000000, 0.000000, 1.000000>, PRIM_POS_LOCAL,<-0.15791, 0.00000, 0.61928>] Red in position 2: list redTWO = [PRIM_SIZE,<0.410190, 0.410190, 0.410190>, PRIM_ROT_LOCAL,<-0.054498, -0.227002, -0.226995, 0.945502>, PRIM_POS_LOCAL,<-0.15791, -0.21855, 0.61928>] And so on? Or would it be better to get one list that has all the information above, but put like a keyword in the list, so that I can find the information for red in position 1 then another for red in position 2, as well as all the other prims that are in the list? Because what Im running into is if I have one list, I basically have to script this so that when someone trigger the position change, it goes into the list and one prim at a time finds the position, and then finds the prim's params, which cause everything not to change right at the same time. There is a delay with every time it has to go into the list. How I currently, before I tried this whole notecard list script is to have preset positions in the script itself, which allow changes to be made easily. Also had script memory issues.. So trying to streamline everything, and dont know if Im doing that or just causing more issues..
  15. I guess where Im getting stumped is how to setup the script to use the list, getting the information off the notecard is simple. Would I want to have one list for all the params? I dont think it would be as simple as putting all of the information from the notecard into one list called, I dont know "mainlist", then doing something like... llSetLinkPrimitiveParamsFast(linknumber, mainlist); I want it so that every prim has different params to change to depending on what mode its set to Another issue is that the data that is stored on the notecard has to be changed in before it can be used, for size changes. so before it can be used in llSetLinkPrimitiveParamsFast, it has to be altered.
  16. alright, thank you all, I kinda figured it was that 50% one, and the ruthed shape. Will keep playing around with it until I find something that works!
  17. Simply, what would be the best body shape to most match the mesh look? When I use a rigged mesh and attach it, it makes the mesh a totally different shape, due do the body shape, (arm length, leg length.. all that)
  18. oh duh! Silly me I think I understand what you all are suggesting, I think Im just making it harder then it should be. Thank you
  19. thats about as much as I got with my script already. Im just at a loss of how to get it to use the that data at the same time. Any thoughts?
  20. that I already kind of do. I use "for" as the event. Is there a better option?
  21. Hello, thank you for reading. Im currently trying to use a notecard to have Preset Position, Rotations, Sizes, and some other misc information. I know how to setup a script to allow me to do this, but Ive run into an issue, With my script, it basically goes down the list that my script gets from the notecard, and if the information that is needs is there, it changes the child prim to the preset state, but it does it basically one at a time, and I want one smooth motion. I know there is some delay, and I can work with that. I was wondering if there is some kind of way to go down the list, and get all the information that needs to change, then after all that is loaded, then make all the child prims that are going to change, change in that one motion(more or less). Im not really asking for the script for this, though if someone happen to have that, I would be greatful, I do enjoy figuring it out on my own, but not too sure where to start, can anyone push me in the write direction?
  22. sweeet I think I figured it out.. I know Im probly doing too much, but what seemed to work for me is to import the obj from Zbrush into Blender, then Export another obj. then load the Bones.blend file then import the obj I just exported from blender. Im still playing around with it, but that does seem to of fixed it, for now, watch me break something and be all doh! I dont know what to do now lol Thank you everyone for helping!
  23. Im getting a Python Script Error when I do it this way, course this is the first time Ive used the zspheres to make anything, am I forgetting to do something?
×
×
  • Create New...