116k hpgbproductions Comments

  • How to change control key positions 2 months ago

    No, wheel brakes are one of the few things that cannot be controlled by the funky

  • Randomizing Input 2 months ago

    @Yoloooooo
    - There is some quote about making a deterministic computer doing random things being a crazy task
    - One such example is the input counter in one of the extremely old pokemon games (i can't remember which). The point is that differences in each play session causes rng to be different
    - Timing is also hard for players to control. But be careful of using a frame counter or timer with small windows, due to polling rate differences between the input handler and funky trees

    +1
  • Randomizing Input 2 months ago

    Trying to make randomness using a computer, absolute classic
    Pick some things that are very difficult for the player to control exactly, and use them in an equation
    Or run the linear congruential generator every frame, or something similar, and only use the result on the Activate1 frame

    +3
  • [ Misc. ] The day I was born. 2 months ago

    Umazing! 👍

  • 911 GT3 RS 2 months ago

    Susge

  • ALPACA AMALFI (KE31) 2 months ago

    @RobertsAeronautics stronger regen brake when throttle is off, similar to gear 1 and 2

  • Lando Norris 2 months ago

    @ZFold7 labels are just incredibly limited, don't push it
    Try to increase width or height

  • Control indicator label code request 3 months ago

    For the pitch and roll display, try using center-center alignment, and build a + frame in the label first. Then put a circle in a new line. Try using the indent tag to move it horizontally, and the voffset tag to move it vertically.

  • Opinion: What the Recent SimplePlanes Drama Says About the Community 3 months ago

    blud forgot how to write :wilted_flower: :pensive:

    +3
  • Uh, do you mind? 3 months ago

    mmmm grain erosion
    .
    do you ever get flushed down the drain?

  • New bus project (I want answer not upvotes) 3 months ago

    @KoreanAircraftliner since these buses are for tighter spaces, they only have 2 doors

  • New bus project (I want answer not upvotes) 3 months ago

    City bus, but mountain road capable because why not

  • Mango — Mustard War ? 3 months ago

    @SamuelHayden sorry to hear that, you should drink more water

    +2
  • what happened to lm0418? 3 months ago

    lm1984 :pensive: (idk what happened)

    +1
  • Mango Mini Parfait 3 months ago

    @ToeTips i live in a tropical climate, but this item was not found there, but instead in a place that is kinda known for overpriced fruits

  • Mango — Mustard War ? 3 months ago

    @DeeganWithABazooka
    the virgin mustard:
    - sharp, unpleasant existence
    - needs to be team carried by other ingredients
    - often finds itself in a jar
    - name tarnished by war crimes
    (j)

    +1
  • My PC better than him? 3 months ago

    @YarisHatchback it is good, sort of gaming specs without the rgb. But it's an old laptop at this point, can't buy it anymore
    I have run low graphics snowrunner, ets2, project wingman, and train crew with 60 fps.
    There is one goofy point: it cannot run without the battery installed, because the power unit can draw more power than what the battery or charger alone provides. You can ask me how i know

  • Mango — Mustard War ? 3 months ago

    There is no need, mango is the clear winner

    +2
  • My PC better than him? 3 months ago

    You forgot the most important part of the setup, which is not in bio: the inverted ikea document tray (jk)

  • Out of ideas+question 3 months ago

    Fuselage wings are "just" a few lines of circular and rotated straight fuselage blocks
    But i haven't built a plane in years so idk i forgor

    +1
  • [off topic, kinda] isnt it kinda odd seeing SP builds in other games 3 months ago

    Basic cockpit and blasto j90 mentioned

    +1
  • Mango Mini Parfait 3 months ago

    @CaptainBrayden
    Nothing appears, or missing rows? --> Increase label width and height
    Is the text cut off? --> Text data is too long to paste into settings menu field
    Only 1 row? --> Check for comma decimal points (bug with original SPRASTER)

  • Mango Mini Parfait 3 months ago

    @CaptainBrayden uuh just use the online label maker by 11qazxc

  • Mango Mini Parfait 3 months ago

    @Attr dessert

  • Mango Mini Parfait 3 months ago

    @SuperSuperTheSylph i shared it with a family member, it's good but $6 is steep for the small portion ngl

    +2
  • [ENDED]Mango Challenge! 3 months ago

    @BluesynVNA idk about the creativity part, but even for a meme contest, 3 day opening window is kinda f'ed up

  • [ENDED]Mango Challenge! 3 months ago

    This dropped at a good time for me, maybe as a mango enjoyer, i will build something (clueless)

  • OCM Tetsu 1990 3 months ago

    The shape is nice, but I'd suggest making the rear fenders bigger at the top, since it's awkward rn
    Also handles oddly (sharp response then chundersteer) but could be my skill issue

    +1
  • Someone help me code 3 months ago

    the heli rotor part already does that for you

  • Dassault Mirage 2000-5F 3 months ago

    I thought it was an ace combat screenshot until i saw it in my jet stream lmao, the pic is that good

    +2
  • How to code ((set) (reset) then (output)) in simpleplanes? 3 months ago

    Chat, what does this mean??

  • i have returned (with a compromise) 3 months ago

    Bruv has re-attained the longer form

    +3
  • wip bomber 3 months ago

    Mmmmm sausage bomber
    How does the landing gear fit in the engine?

    +1
  • I need ideas. 3 months ago

    On the topic of JSDF, make the toyota mega cruiser missile launcher

    +2
  • Raphael and Rachel's lore 3 months ago

    🔥✍️
    Also they are... among us

    +2
  • Rather useful/interesting video I encountered on object rotation 3 months ago

    I got this on the algorithm as well

  • Problem is description 3 months ago

    If you have custom landing gear, try to increase maxAngularVelocity

    +1
  • We need more curators. 3 months ago

    Real

  • need advice with advanced funky trees 3 months ago

    This is something I made a long time ago
    .
    WiperAnimator:
    repeat(sum( InputWipers | (WiperAnimator>2&WiperAnimator<3.9)?1:0 ),4)
    Comment: The animation period is 4s, and the state of the animation is tracked in WiperAnimator. The animation always advances if it is in the range t=2..3.9
    .
    WiperPosition:
    WiperAnimator<1 ? smoothstep(0,1,WiperAnimator) : (WiperAnimator<2 ? smoothstep(1,0,WiperAnimator-1) : 0)
    Comment: Not related to your question but good for context. Interpret the animation value. t=0..1: smoothstep increasing; t=1..2: smoothstep decreasing; t=2..4: constant zero

    +2
  • Any pointers on how tire traction works? 3 months ago

    The most basic thing is:
    Higher extremum ==> less responsive, more slidey
    Higher asymptote ==> more forgiving
    You have to imagine the Unity wheel collider curve for yourself

    +6
  • Loose rotators (xml help request) 3 months ago

    If you don't have other requirements for the rotator, just set the input to a very large constant value. If you want to be able to stop or change the rotation speed, you can use sum() and set the speed xml to a very large value. You will still get jolts when changing speed.
    .
    I can say that recently, I used control bases to make a decorational part that spins very fast. However, the CoM of the parts must still line up with the rotation axis of the control base to prevent vibration. The parts don't affect the handling much.

    +2
  • Bio is gone :( (solved thanks to Dorian:D) 3 months ago

    If your bio page ever said that it was removed (before you changed it to what it is now), then it is a mass report. Otherwise, it should be a bug or your accidental deletion

    +3
  • Loose rotators (xml help request) 3 months ago

    You can decrease the rotator massScale to help a bit. If you want to lower the torque even more, you must use control bases.

  • Bio is gone :( (solved thanks to Dorian:D) 3 months ago

    But why is it gone

  • Murica! 3 months ago

    @RepublicofWrightIsles freemen is the plural of freeman, which implies the existence of multiple people of the freeman name

  • Murica! 3 months ago

    @RepublicofWrightIsles freemen... morgan freeman reference??

    +1
  • A reminder to mobile website users (with regards to website browsing speeds) 3 months ago

    Imagine not closing tabs you don't need smh

    +1
  • Do wing effects exist in SimplePlanes? 3 months ago

    (Big edit to delete a lot of stuff) I read the thing a few times and tried to write it, but I don't understand it fully xdd
    .
    I think that the jet itself has low pressure as it is fast. And due to fluid viscosity and flow/pressure effects, surrounding air speeds up and decreases in pressure as well. Far away, the air maintains atmospheric pressure. This makes an axial pressure gradient with higher pressure on the outsides and lower pressure in the middle.
    .
    If one side is then blocked, it will always be at low pressure since there is no air there to form the usual pressure gradient. The new pressure gradient has lower pressure near the surface, and higher pressure at the free side. The pressure difference means that the jet experiences more force on the free side, and will tend to move towards the surface. This is much stronger than any passive airflow effect, and you can push the jet around sharp curves.
    .
    The simple does not have coanda effect. The wings only consider angle of attack afaik

    +1
  • Ok I don't know who half you people are in the forums. WHO ARE YOU AND WHAT KIND OF STUFF DO YOU BUILD??? 3 months ago

    Cars and trains, and the extremely rare anime girl apparently
    Maybe I am also known for part inefficiency, and having an unhealthy obsession with torque curves