115k hpgbproductions Comments

  • Anti Missile Ball 2.1 years ago

    @factorization20 I don't know anything called sense object
    The service provider has a way to get the player aircraft position.
    If you want to find any aircraft, not just the player aircraft, you can search for aircraft component.

  • How to set piston to extend ? 2.1 years ago

    If the direction is Pull instead of Push, the piston will be extended in the designer, and retracts when the input increases

  • IM STARTING TO GET TIRED 2.1 years ago

    me too, it's almost midnight as i'm writing this

  • About the Variable Setters 2.1 years ago

    It is useful to split the setters into groups, but it can become harder to manage the execution order for different systems that interact with each other
    I agree with adding a search bar, they should also add a scroll bar, and save the scroll position when you fly the plane (like what is currently done for the camera position)

  • building habits idk 2.1 years ago

    @ToeTips left side builders stray from the teachings of Andrewism, which famously teaches building on the right side. Legend has it that they are possessed by the will of the Kraken, the demon of this world.

  • So Jundroo accidentally added 1 part custom images to the game... 2.1 years ago

    @ToeTips this software is windows only due to the use of a windows-specific library. You can try to see if wine can run the exe. Or use the following:
    PlanariaLab SPLC py source code version probably works on linux
    11qazxc HTML port, there is a link to their webpage

    +1
  • Funky help 2.1 years ago

    @ToeTips afaik the distance between the CoL and control surface doesn't matter
    Generally, the further away the wing or control surface is from the CoM, the more rotation is produced. Even though the lift is the same, the rotation moment/torque around the CoM is greater.

    +1
  • Funky help 2.1 years ago

    @ToeTips abs converts negative numbers to positive. It's not a condition statement
    Just find some good values that you can replace 90 with at different speeds, try to fit a curve to it, and write it in FT

    +1
  • Funky help 2.1 years ago

    @ToeTips since you divide instead of multiply, you must increase 90 when fast

  • Funky help 2.1 years ago

    I mean that if your plane has this kind of issue, trying to fix it with FT should be the last thing you try
    But if you want to make a roll by funky tree, you can try to reduce the multiplier as speed increases, since the oscillation only happens at high speed.

  • Funky help 2.1 years ago

    You may have a colliding/loose part, or your elevators are not equal

  • ALOUETTE (NJE32) 2.1 years ago

    @KyonIndustries I can't help you to build the instrument panel, but I might be able to help if you need FT or labels.
    If you are making a 340B, this or this can help you line up the instruments. You can't see what's what from the pictures there, so maybe look at flight sim videos for that.
    There is also a probably illegal website that you can find quickly if you search "saab 340 cockpit", it has flight manuals but I didn't find any instrument panel diagram.
    Also instrument sizes, can't remember the correct scale % so you should try it out

  • MRC FLEX-V (M50C) 2.1 years ago

    @LunarEclipseSP interesting, maybe i should read it
    no anime version sadge

    +1
  • MRC FLEX-V (M50C) 2.1 years ago

    @CR929thenewSPplayer the front references AE86 but is curved like AW11, and the rear brake lights are based on R30

    +1
  • Northrop N9M 2.1 years ago

    illegal stealth ping, even was on an unfinished plane smh my head

  • Funk help 2.1 years ago

    example
    Example SETTER EngineInput:
    smooth(VTOL, EngineInput<VTOL?0.2:10)
    Engine throttleResponse must be greater than or equal to the maximum smooth value, in this case 10.
    added to my funky trees list

  • How do I change the pattern of missile launches? 2.1 years ago

    Innermost weapons always fire first iirc, you can't change it (unless you make the player choose the missile to launch, or try programming in the game)

  • Boeing 767-231ER TWA (N609TW) 2.1 years ago

    didn't request but ok, kinda nice, i would likely have seen it

  • Automated flaps 2.1 years ago

    @Stuktherandomdude if you just want linear control

  • I'm bored anyone got a build request 2.1 years ago

    mitsubishi colt with a massive wing on the back, since i saw one today

  • Cartoon image of SimpleplaneS(debuge)03 2.1 years ago

    sp chan my beloved
    Also, how much RAM do you have? That's a big canvas setting

  • Automated flaps 2.1 years ago

    @Stuktherandomdude ok, i understand. Here's an easy way to make any auto control, not just flaps:
    - find flaps angle required for many different speeds
    - use a curve fitting software (e.g. microsoft office graphs) to convert your data into a smooth curve

  • Automated flaps 2.1 years ago

    If your turn radius is big at any speed, your plane either has too small wings and/or too small control surfaces

  • Throttle issue 2.1 years ago

    Open controls menu (settings --> controls)
    Check that your HOTAS is detected and supported by the game. If it is, the controller name should appear. If not, you can't use it without some computer work, and you may need to search online for help specific to your device.
    Go to the Throttle row (not increase/decrease throttle), click on the box in the controller column and follow the instructions

  • Throttle issue 2.1 years ago

    Set the throttle axis and not the increase/decrease throttle controls

  • Throttle issue 2.1 years ago

    Idk, try it yourself
    If it doesn't work, there is software to change joystick axes

  • For Alisuchanka 2.1 years ago

    can't see it, i get err_invalid_response
    nvm it works for me now, browser acting up

  • [Solved] Funky Trees - evaluating specific values 2.1 years ago

    Try to make a feature one step at a time:

    1. Build knob with range 0 to 2. Use a variable for the knob position. In this case 0 is stop, 1 is idle/start, 2 is normal. Make sure that as the knob turns, the value changes.
    2. Optionally, you can use a setter to round the knob position value when the knob is not moving. This will provide a notching effect to your knob (I have code for this).
    3. Add a setter for each variable you want to get out of the knob position. You should use the round function in the comparison. Example setters (your variable names may be different:

      • LeftEngStop is round(LeftEngSelect)=0

      • LeftEngStartIdle is round(LeftEngSelect)=1

      • etc.

    +1
  • [Solved] Funky Trees - evaluating specific values 2.1 years ago

    No, you cannot set variables inside of an input, including label { } inputs. The = operator in FT compares two values. If LeftEngineMode is currently 1, then LeftEngineMode=1 becomes true.
    .
    If you want to convert a single numeric variable to multiple true/false variables, you must use one variable setter for each new variable. For example:
    Setter of LEngIdle is LeftEngineMode=1

    +1
  • [Solved] Funky Trees - evaluating specific values 2.1 years ago

    Currently, you can't make string variables, but you can make enumerators by choosing a set of values for your variable, like normal is 1, idle is 2, and stop is 3. You can check against each value in the ternary structure like:
    EngineMode=1 ? ... : (EngineMode=2 ? ... : ...)

    +1
  • FT "Pointer" Assistance? 2.1 years ago

    Use rotators with AngleOfAttack and AngleOfSlip inputs

  • Chibi AlivePan 2.1 years ago

    man got that minecraft body shape

  • So Jundroo accidentally added 1 part custom images to the game... 2.2 years ago

    @Yourlocalhuman set emission from the subassembly xml file

  • I need help making airport (mod) 2.2 years ago

    You can use the sp default models or make your own

  • Help on Car steering 2.2 years ago

    Yeah funky
    I use an angle = INPUT/GS curve. Try to figure out what the output is at different values of GS.
    INPUT / lerp(1,DIVISOR,inverselerp(MAX_STEER_SPEED,MIN_STEER_SPEED,GS))
    Example use:
    Roll / lerp(1,15,inverselerp(10,90,GS))

  • Yoke or Stick? 2.2 years ago

    Stick because yoke looks too much like steering wheel

  • Memes by chatty o gpt 2.2 years ago

    When it can only produce strange reaction memes

  • Why my friend can't see the Image in my post? 2.2 years ago

    googleusercontent user skull emoji
    google photos images are private, so only you may be able to see them

  • Is it possible to make plane stable with lift airfoils 2.2 years ago

    You can only passively balance a plane for a certain speed. Below that speed you will pitch down, above it you will pitch up. That's why trim exists

    +3
  • what is part Variable Outputs 2.2 years ago

    Every frame, it sets the value of the variable you choose. Then you can use that value by using the same variable

  • Summer Clouds 2.2 years ago

    @poenix it has the XR folder so it should

  • Tone Generator 2.2 years ago

    @TylerWildDog steps to make any simple sfx:
    1. Get sound file
    2. Use a program that can do a fourier transform of it
    3. Implement in SP using VA blocks, and get it sounding right first
    4. Implement switches or volume control with funky trees

    +6
  • ALPACA (KT10-A) 2.2 years ago

    @ChallengerHellcat probably. On most vehicles, the CoM is on or slightly above the frame level when unloaded

  • how to program a hinge rotator to automatically go to a certain position? 2.3 years ago

    You can use the transform part tool to rotate large sections of connected parts, which allows you to switch between one rotation angle for easy building and one for flying/release.
    If you really need to use a rotator for this, put a constant value into the input controller

  • ALPACA (KT10-A) 2.3 years ago

    @ChallengerHellcat no

  • HUD box not following target 2.3 years ago

    I can't see the pic, but:
    For 2D target box:
    - Ensure the labels are aligned. Use the HUD artificial horizon or crosshairs match with your cockpit crosshairs.
    - Ensure the label scale is correct for your camera-HUD distance.
    For physical rotating target box:
    - Ensure the center of rotation is on your camera position.

  • ALPACA (KT10-A) 2.3 years ago

    @alexJgameYTukraine000000 it's not possible to convert this model, but I can make an extremely potato version

    +3
  • ALPACA (KT10-A) 2.3 years ago

    @LITVYAK013INDUSTRIES please search online for more information
    You can get the link on mobile as well, I don't know specifics for each platform