6,361 11qazxc Comments

  • Sukhoi SU-75 Checkmate 2.3 years ago

    @teddyone02 boiii it was fucking year ago, i almost forgot about it...

  • ArtiElf Type I 2.4 years ago

    Gun firing and recoil animation was not synchronized for me for some reason.
    I did not expect such good and highly-appreciated build to be drone with fixed animation.
    Not sure if i can call it revolutionary.
    Her legs are beautiful though.

    +1
  • Drone MD-22 2.4 years ago

    I just understood why code must have comments.
    What's the difference between chasing and following?
    Is there significant reasons why you use RateH >= -0.05 & RateH <= 0.05 instead of abs(RateH) <= 0.05 ?
    What's the difference betwween TrueH and Heading?
    Was it originallly writen in FT or was it copied from other program?

    +1
  • Bug thread for v1.12.128 (current version) 2.4 years ago

    @Kendog84

    Parts rotation bug(?)

    If i understood correctly it's gimbal lock and it isn't a bug.

    Sorry for off-topic message.

    +3
  • **Updated Rules** The Great SimplePlanes Dogfight Tournament 2.4 years ago

    Entire f.cking year...
    So many things changed, but tournament still says "The first Dogfights start at the 6th June at 6pm CET" as if it's still 2021-05

    +2
  • External Flow: Lift and Drag 2.6 years ago

    Yes, even sp airplanes (mostly) have wings, but... but hey, you're gold, don't you know how sp physics works already?
    For wings it isn't even VLM, it's just fixed function.
    Other parts have sort of shading but it doesn't affects force produced by wings, props etc.

  • External Flow: Lift and Drag 2.6 years ago

    One important thing: it have nothing to do with sp.

  • Few meters away. 2.6 years ago

    RU version, page 8, line -9: "Двести пятьдесят. Двести семьдесят. Ручка на себя. Самолёт плавно поднял нос и
    оторвался от полосы. Ничего сложного. Самолёт с рёвом набирал высоту."
    RU version, page 9, line 1: "Альтиметр уже показывал больше трёх с половиной метров."
    3.5m is just a bit more than height of modern fighter; you don't need to pull nose up to get 3.5 meters of altitude in such time.

  • It's been a good ride. 2.7 years ago

    i understand it's april fool, but it isn't fun at all.
    please choose better topic for your jokes next time.

    +3
  • Bug thread for v1.12.128 (current version) 2.7 years ago

    SP v1.12.125:
    mark tag of one label obscures text of other labels located nearby.
    gif, uploaded craft

    +1
  • Simpleplanes No jet ingine series 2.7 years ago

    Old props (partType Prop-1 and Prop-2) will look like propeller engines but work like jet engines.

    +1
  • War Of The Future Challenge (Closed) 2.7 years ago

    Can it be someone other's build with modifications?
    If no, can i use parts of someone other's builds?

    +1
  • 256-byte DDR RAM 2.7 years ago

    @JuanShot2Go
    I modified it a bit, so now it looks like that:
    if(abs(rate(clk))){
    addr=ai0+ 2*ai1+ 4*ai2+ 8*ai3+ 16*ai4+ 32*ai5+ 64*ai6+ 128*ai7
    if(wrt){di=di0+ 2*di1+ 4*di2+ 8*di3+ 16*di4+ 32*di5+ 64*di6+ 128*di7}
    }
    addrLarge=floor(addr/3)
    addrShift=pow(256,repeat(addr,3))
    if(addrLarge=0){
    if(di>=0){m0=m0-(repeat(m0,256*addrShift)-repeat(m0,addrShift))+di*addrShift}
    value=floor(repeat(m0/addrShift,256))
    }
    if(addrLarge=N){
    if(di>=0){mN=mN-(repeat(mN,256*addrShift)-repeat(mN,addrShift))+repeat(di,256)*addrShift}
    value=floor(repeat(mN/addrShift,256))
    }
    di=-1
    .
    If clk was switched, buttons ai0...ai7 will be used as new address (each button is one bit, ai0 is least-significant one).
    If clk was switched and wrt is true, buttons di0...di7 will be used as data to store (each button is one bit, di0 is least-significant one).
    addrLarge is number of memory variable that contains selected address. It's 1//3 of address, because single-precision floating-point format stores 23 fraction bits and one implicit leading bit, and 24/8 is 3, i.e. it can store up to 3 bytes (not including exponent and sign).
    To store 3x8 bits in one 24-bit variable without intersection we need to shift it, but FT doesn't have any bitwise operators. So to shift value by N bits we need to multiply it by 2^N. Offset that we need to get is repeat(addr,3) bytes (see previous line), i.e. to store value in clean memory variable at Nth byte we need to add value*pow(2,8*repeat(addr,3)) (it's equal to value*pow(256,repeat(addr,3))) to memory variable.
    To clear a byte of memory variable it uses m-(repeat(m,256*addrShift)-repeat(m,addrShift)). i wrote it 3 months ago and i don't remember how it works, but looks like it works.
    value setter shifts memory variable and then uses repeat(...,256) to cut anything that's above 7th bit and floor(...) to cut anything that's below 0th bit.
    In programming languages like CS and Python we can create array named m and then get Nth element of array with m[N], but FT doesn't have arrays. So instead it uses pseudo-array, that's a lot of variables named mN and separate setters for each one.
    After it's used di sets to -1, and it will contain -1 as long as clk will not be switched (see 7 lines above). If di<0, mN setter will not be activated, and therefore memory contents will not be changed.
    Finally, if clk was switched and wrt is false, buttons di0...di7 is used to display separate bits of value that was previously obtained from one of memory variables (see 3 lines above)(didn't wrote it in code above because of comment length limit).

  • Funky Trees! 2.8 years ago

    @linxiaofeng2339 @huiyuanzhang
    Air pressure in SP is exp(-Altitude/7640) or pow(IAS/TAS,2). IIRC these two is equivalent (i.e. difference is less than 1e-6), but you should check it.

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

    XiaoPiao141:Would you like to give me the part ?

    I'm interested too.
    I tried to replace linefeeds with voffset and pos, but if i understood correctly it didn't work too.

  • [Quick-torial] Getting the New Slice Tool - AKA 'Fill' - to behave on a "Fuselage Cone" 3.0 years ago

    can you, please, add screenshot of result here?

  • Text Sub Assembly - Unique Font Characters 3.0 years ago

    afaik all box-drawing characters works correctly (but to draw actual box you will need to use mspace and line-height), but i can't prove it.

  • Simplifying parts menu 3.0 years ago

    @Formula350

    Basically, it'd be nice if every part in the menu system could just be configured in a setting file, to personalize the order they appear in.

    Actually this file exists, it's %userprofile%/appdata/locallow/jundroo/simpleplanes/DesignerParts.xml (for windows)

    It contains list of assemblies, and each assembly have name, category, settings for preview image, and list of it's parts with attributes.
    It's structure is almost same as structure of sub-assemble files, so i think you can also add connections if assembly contains more than one part.

  • Who is winning? 3.1 years ago

    Su30SM,Pigpen,Hellkeska,Pigpen,Su30SM.

  • Totally not silver 3.1 years ago

    it's weird. if you're too lazy to get right colors, you can edit css file (f12 in firefox, idk about other browsers).

  • Question... 3.1 years ago

    here.
    save this link, maybe you will need it one more time later

    +2
  • A discovery (not sure) and a question 3.1 years ago

    as far from center of mass as possible.
    airplane rotates around it's CoM, and speed of part relative to CoM is proportional to distance from part to CoM and angular velocity of airplane.
    also if you have large ring on your airplane you can rotate cockpit inside ring, so it's velocity will not be same as velocity of airplane.

    +1
  • SCP-11008 The German Corsair 3.2 years ago

    i'm sure this post is SCP11008-something too.

  • Hachune Miku 3.2 years ago

    ok...

  • Hachune Miku 3.2 years ago

    It's just fail.
    Hatsune Miku (not Hachune) is official translation and used on box.
    As lurkmore says, leekspin was originally made using Orihime Inoue from Bleach, and the one with Miku is just one of thousand remakes.
    If you need some iconic video, you can take songs that made specially for Miku, like "Last Night, Good Night" or "World is Mine" or one of her real-life shows.

  • Sukhoi SU-75 Checkmate 3.2 years ago

    @DeltaLCI no, please, no!

    +1
  • ALX-02 Advanced Atealth Air Optimization Aircraft "Shirayuki" publicity video 3.2 years ago

    Looks good, but i think impractical in cruize, because wing will need a lot less energy to return airplane to near-zero angle of slip.

  • Megpoid 3.3 years ago

    Maybe SP website need separate tag for anime stuff?

    +2
  • black box 3.3 years ago

    click

    +1
  • Void case -H1 3.3 years ago

    not-to-forget comment.

    +1
  • Sukhoi SU-75 Checkmate 3.3 years ago

    Sometimes SP builders is even faster than R34 artists...

    +2
  • Small Feature Wish List for v1.11 Update 3.3 years ago

    Collision model for fuselages that have same shape as visible fuselage.
    Because we can do camo from from many parts, we can hide resizable wheel inside custom rim, but we can not change collisions.

    +8
  • WIN.440 3.3 years ago

    BAC TSR2?

    +3
  • XFWAAC-MCLV ''Actias'' Flying Aircraft Carrier 3.4 years ago

    I managed it to turn within ~4km radius.
    And i calculated that outer wingtip flew with ~2.5x more speed than inner one.So i think that without gyro it will roll to the same direction in which it turns, and it may result uncontrable rolling with subsequent crash.
    .
    On this build, wing loading is just 167kg/m^2, it's better than on some fighters uploaded to this site, so i think if i will delete it's gyro, it can fly as good as real-life fighters.

  • Constellation II Class Frigate (FFG 04) 3.4 years ago

    And all this in 70 tons...

  • It needs AOA limiters installed as its unstable RN 3.4 years ago

    https://www.simpleplanes.com/a/LgHN01/Project-Hellbore-V6-1

  • XT-SL 03 "Artemida" 3.4 years ago

    If you want to fly exactly,

    Maybe "to fly straight"?

  • Some bad things about me 3.4 years ago

    But my pc has problems, it always turned off itself and can't turn on, must wait until the next day and it keeps repeating.

    You probably need to clean dust from it's fans (especially cpu fan in the center of hull), and maybe attach one more fan.

  • Need help again and again 3.4 years ago

    Hello, fish.
    The problem is not center of pressure, but your attempts to move it.
    I will give you fixed version and explaination what's wrong soon,
    for now i can say that it can't stall, goes into tailspin, and can't stop rolling because canards have almost 50x more area than main wing.

  • The Queen Flies Again [TEASER] 3.4 years ago

    T

    +1
  • Turret Fighter Challenge 3.4 years ago

    @GiuliMBorgesYT
    Manual loading isn't a problem of gun itself.
    But i agree about HE shells.

    +2
  • Turret Fighter Challenge 3.4 years ago

    Can i install more than one turrets? (you will need at least 2 to cover full sphere)
    How many engines can i install?
    Can it be jet-powered?
    Will 20mm cannon with 1400m/s muzzle velocity be considered as realistic?

    +1
  • Eggcraft Challenge[Close] 3.4 years ago

    Is there any eggy helicopter for scale?
    I tried to fit Gator-2 into eggship hangar, but it's rotor diameter is 1.5x more than ship's width.

  • Steam Summer Sale 3.4 years ago

    Does anyone know, who is this girl on banner?

    +9
  • Zarya - 02.77 3.4 years ago

    @BeastHunter
    https://en.wikipedia.org/wiki/SovietsubmarineK-314
    https://en.wikipedia.org/wiki/USSKittyHawk(CV-63)#1979to_1998

  • Below 400 Parts Destroyer Challenge 3.4 years ago

    First line says, that it's "Challenge For Skilled Ship Builders Of SP Community",
    lines 10-12 says that part of rewards is spotlights,
    but you have only 81 point for now, (most active community have more points than you for now)
    and iirc you can spotlight builds only from player that have less points than you.
    Was it a joke,
    Or do you have another account?