Porto
  • Buy
  • Community
    • Forums
    • Videos
    • Users
    • Education
  • Content
    • Crafts
    • Sandboxes
    • Systems
    • Celestial Bodies
    • Mods
  • Development
    • FAQ
    • Blog
    • Roadmap
    • Suggestions
    • Presskit
  • Register / Log-In
5,547

LeMagicBaguette's Comments

Show Best
Best Newest
View Profile
  • Profile image
    Missile Programme

    @CloakPin that is not what I said.
    Missile is on autopilot. Parent craft remains primary. Missile veers off target as if it was using primary craft’s orientation instead of its own.

    2.1 years ago
  • Profile image
    Missile Programme

    @CloakPin here’s the thing: the missile has its own controls being monitored and adjusted by a programme. It is not possible for me to control it once it has left.
    If my target is off to the right, the missile veers off to the right, but it keeps going because my craft is still not pointed at the target. The missile ends up doing a loop trying to veer towards a target that my craft is not facing.

    2.1 years ago
  • Profile image
    Looking for a robot vizzy

    My Mk.II Sentinel has a useable walker programme. It can be found in the main command chip.

    2.1 years ago
  • Profile image
    It's been a while (teaser for new projects)

    :)

    2.1 years ago
  • Profile image
    The Relativistic Rocket Equation

    @TomKerbal I meant an actual war game conducted by military powers, sorry!
    Anyways, the way I define complexity lies between possibility and the calculation of said possibilities. The many combinations of a pack of skittles is just as insane as that of chess, but chess is harder to compute, making it more complex. However, a single result from a difficult equation (say, one for calculating the way space time curves in the presence of a Kerr black hole) is still complex because of raw computation rather than possibilities.
    I define complicated more similarly to convoluted than to complex; something complex is at its base state whilst something complicated can be simplified.

    2.1 years ago
  • Profile image
    The Relativistic Rocket Equation

    @TomKerbal I wouldn’t say chess is super complex; rather, it’s size of board is what gives it so many possibilities, but the rules are simple. And yes, I like chess.
    With a war game, a single warship can occupy tons of spaces.

    2.1 years ago
  • Profile image
    The Relativistic Rocket Equation

    @TomKerbal it was mostly just in context. It’s like chess is complex compared to noughts and crosses and a war game is complex to chess.
    Although the derivation is a bit cracked.

    2.1 years ago
  • Profile image
    The Relativistic Rocket Equation

    I don’t understand why there’s such complex math being posed for a simple* game.
    I love it.

    2.1 years ago
  • Profile image
    A serious request

    Y E S

    2.2 years ago
  • Profile image
    Wing types?

    It has to do with lift with an AoA of 0 degrees. Symmetric provides no lift, semi delivers some, and flat bottom supplies great lift.

    2.2 years ago
  • Profile image
    No hypergolic fuels listed for rocket engines

    I believe it’s because the game does not recognise hydrazine. It recognises all of the defaults and penthrite, and I believe that you can set your engines to any of those, but hydrazine is probably not possible.

    2.2 years ago
  • Profile image
    Rover Vizzy Autopilot?

    @Buzz313th 👍

    2.2 years ago
  • Profile image
    Rover Vizzy Autopilot?

    I could code one if you’d like.

    2.2 years ago
  • Profile image
    IT'S JUNOVER...

    Sadly, because it is after midday, you are the April Fool :)

    2.2 years ago
  • Profile image
    I am new here. Pleased to meet everyone.

    Hello!

    2.2 years ago
  • Profile image
    What are your favorite Aircraft and why?

    SU-27. If you can’t dance a ballet in place whilst firing missiles at your enemies, you’re doing it wrong.

    2.2 years ago
  • Profile image
    Silent Rockets

    @CloakPin well yes, but actually N O .

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat :D

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat the word “this” is a link. Sorry

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat this, for instance.

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat there are a few posts which introduced codes for betas. These codes probably don’t work anymore, but you can always try. If it works, 1.0.7 should show up.

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat it’s an Apple app you can grab from the AppStore. It’s basically a beta trial software that allows you to download betas with codes given by the developer.

    2.3 years ago
  • Profile image
    Is the mobile beta truly accessable?

    @ElmerTheCat I just discovered it sitting around in TestFlight. Turns out I’m still a tester.

    2.3 years ago
  • Profile image
    Has JNO mobile version released yet?

    NO TILL IT GETS RELEASED)

    2.3 years ago
  • Profile image
    Extremism cannot be tolerated on the Juno: New Origins website

    @DrooMulticompany okay, then. I’m not gonna engage further ¯_(ツ)_/¯

    2.3 years ago
  • Profile image
    Juno: New Origins - Officially Launched

    @SimpleStudent I was hoping you’d follow with “yay.”
    Yippee ki Yay!

    2.4 years ago
  • Profile image
    Juno: New Origins - Officially Launched

    @SimpleStudent ki

    2.4 years ago
  • Profile image
    Simple Vizzy Question

    @ElmerTheCat :)

    2.4 years ago
  • Profile image
    i need something to make

    A walking house

    2.4 years ago
  • Profile image
    Simple Vizzy Question

    If you do not edit anything about your position at all, it is a vector with the origin placed on the centre of the world whose SOI you reside in. This does not account for the rotation of your planet, so it will continually carry you around a latitudinal circle until you reach where you started.
    I can’t tell you why the origin is oriented the way it is nor how to account for said orientation :(

    2.4 years ago
  • Profile image
    How can you tell if the Acceleration of your Craft is positive or negative?

    @DMNK99 if you have a dot product, it will show you how well the two vectors align. I suggested this since you asked for determining the sign value and that is the only was I can think of doing it. Sadly, this means that you will almost never get the full magnitude of acceleration, but it will be close.
    When I say normal, I mean the magnitude is being constrained to 1. The operation is basically this in FunkyTrees:
    dot(FlightData.Acceleration,normalise(FlightData.SurfaceVelocity))
    As I stated earlier, this should give you an acceleration close to the actual value with a sign depending on whether or not it opposes or adds to the current velocity. If this doesn’t work, I can always submit a demo craft.

    2.4 years ago
  • Profile image
    How can you tell if the Acceleration of your Craft is positive or negative?

    Dot product of acceleration and velocity (normal).

    2.4 years ago
  • Profile image
    im back now

    :)

    2.4 years ago
  • Profile image
    When exactly will 1.0 mobile be released?

    how?

    2.4 years ago
  • Profile image
    Soon...

    That’s not ominous

    2.4 years ago
  • Profile image
    Tying Properties to Inputs

    @ChaoticGraviton nevermind, I finally got it working! I just misinterpreted what you said.

    2.4 years ago
  • Profile image
    Tying Properties to Inputs

    @ChaoticGraviton Basically, what I’m trying to do is to attach that one slider you can adjust in flight mode to the input itself, basically adjust that power slider with an input such as throttle.

    2.4 years ago
  • Profile image
    Tying Properties to Inputs

    @ChaoticGraviton appreciated, but I’m trying to do the reverse, i.e. control fuelConsumptionScale with Throttle.

    2.4 years ago
  • Profile image
    Hello!

    Hello :)

    2.4 years ago
  • Profile image
    I’m probably quitting

    :(

    2.4 years ago
  • Profile image
    It's time for a new name

    @XionmassResearchDevt we probably have. I tended to speed around in a BT-7 or a T-34. I also had a weird sloped BT.

    2.4 years ago
  • Profile image
    It's time for a new name

    @XionmassResearchDevt likely not

    2.4 years ago
  • Profile image
    It's time for a new name

    @tar5 my guess is that it may come out in a little over a fortnight.

    2.4 years ago
  • Profile image
    (Solved) WPN78’s XML Guide is Missing

    @ChaoticGraviton thank you

    2.4 years ago
  • Profile image
    It's time for a new name

    @XionmassResearchDevt wot?

    2.4 years ago
  • Profile image
    It's time for a new name

    @KellyNyanbinary it noped out

    2.4 years ago
  • Profile image
    Happy New Year 2023!

    Happy new year.

    2.5 years ago
  • Profile image
    How do I send a broadcast to another craft

    @Unforgettable69 beacon demo is ready

    2.5 years ago
  • Profile image
    UPDATE 0.9.999.99999

    :)

    2.5 years ago
  • Profile image
    Challenge for you

    I made a very fat rocket once. I think I might be able to build it again

    2.6 years ago
  • «
  • 6
  • 7
  • 8
  • »

© Copyright 2025. All Rights Reserved.
8:06:02 PM

  • Rules
  • Privacy Policy
  • Contact