Jump to content

Teflonhotpocket

Resident
  • Posts

    12
  • Joined

  • Last visited

Posts posted by Teflonhotpocket


  1. It's a short none looped animation, I've tried adjusting the length, the frame rate, the easing, I've tried BVH, ANIM. No matter what I adjust or mess with it always glitches out and freezes up between the pre jump and jump, I tested the landing, and its the same with that as well. It plays the prejump, pauses (and goes to the default animation) for a second, then proceeds onto the jump animation. During the landing, it goes smoothly from the jump to the land, at the end of the landing animation it does the same thing in that it pause/glitches. It's starting to drive me insane at this point because I've exhausted all I can think to change, you are the first person for days now to even respond after posting here, asking in various chat groups, asking random people I know who do animations.

    It's obviously something on my end that I'm doing wrong, it's probably something obvious I'm just not seeing, and I'm goin nuts because this one thing is completely holding up a large project.

  2. What sort of specs does the prejump animation require? It seems to lock up for a split second between the pre jump and jump animations, just wondering if there is specific settings, or how long the animation needs to be in order to make it flow smoothly.

  3. is there a way to dislocate joints and move the two bones somewhere else(whilst still parented)? When I attempt to bring it into SL it seems to default back to the bones being directly connected. Wondering if this is even possible to have them be seperated.

     

     

    

  4. So what would be the best way to compare vectors?

     

    I mean this line worked for what I'm doing, along side rewriting how I set the two positions, but it seems like the slight variation when it happens will eventually cause the object to move out of its place over time. Is there a better way to get smooth movement that would be more useful besides the keyframe motion? I've tried setting up an incremental set position, but no mater how I work it it always looks incredibly choppy.

    if ( llVecDist( pos, pos_A) < 0.0001 )
  5. ///////////
    vector pos_A;
    vector pos_B;
    
    
    integer toggle = 0;
    //////////
     
    float speed = 10;            
    
    
    
    vector pos;
    
    
    
     
    default{
        
    touch_start(integer poops)
    {
                if(toggle == 0)
                {
                    pos_A = llGetLocalPos();
                    llSay(0, "Aset"+(string)pos_A);
                    toggle = 1;
                    
                }
                else if(toggle == 1)
                {
                    pos_B = llGetLocalPos();
                    toggle = 2;
                    llSay(0, "Bset"+(string)pos_A+(string)pos_B);
                }
                else if(toggle == 2)
                {
                    
                    pos = llGetLocalPos();
                    llSay(0, "posset"+(string)pos_A+(string)pos_B+(string)pos);
                    if (pos == pos_A){
                           llSetKeyframedMotion([pos_B - pos, speed],[KFM_DATA,KFM_TRANSLATION]);
                                           llSay(0, "Ago");
                    }
                    else if (pos == pos_B){
                        llSetKeyframedMotion([pos_A - pos, speed],[KFM_DATA,KFM_TRANSLATION]);
                                        llSay(0, "Bgo");
                     }
                    else
                    {
                        
                                        llSay(0, "Doom");
                }
            } 
        }
    }

     ...Pretty straight forward what I'm attempting, you touch to set two positions then it moves from one position to the other...


    I've never messed with the keyframe scripts before, and the problem I face they way the code is written is that it relies on the placement to be exact which apparently the keyframe motion cant do properly at all, is there away to get its placement more precise or am I just going about this entirely wrong?

  6. I'm using the SL viewer currently. Also it might not be clear in the screen shots I chose, but the parts that get distorted in the second image are the exact gaps from the uploader screen.


    heres the upload settings I have marked:

    http://i.imgur.com/fPz7KmI.png



    Edit: Okay.... So I've messed around with the viewer settings and something odd is happening... Apparently if I adjust the settings in any way it seems to fix the problem. the distorting only seems to happen when the graphics settings to "Mid" but if I change anything at all it fixes it. Should I trust this though or will it still be deformed to others?

    Edit: Edit: So I've narrowed it down a fit farther, and it has something to do with the shaders, but it seems completely random, since sometimes with the same settings it will either work or not work... I'm just not sure what to do about this though because if it has something to do with the dae file then I dont want to uplaod a mesh that might be messed up for someone else.

×
×
  • Create New...