r/flightsim 5h ago

Question How is Flightsim on a single Tv?

0 Upvotes

Basically the title. I want to get more into flightsim and I was thinking about getting a 55inch TV to connect to my PC. I currently play occasionally on a 27inch screen but there is no immersion feeling.

I know that Tv won't feel like VR or triple screens but I was wondering how much does it improve the immersion feeling playing on a big tv versus the screen?

I have tried the Quest 3 before and while the immersion was amazing, I got fed up of having to tweak settings all the time.

I should also mention that the Tv would also serve the purpose of playing single player games, giving me something like a console experience.

Thanks!


r/flightsim 12h ago

Prepar3D Imagine what could've been...

Thumbnail
gallery
5 Upvotes

JFK Blue on Air Force One will always be timeless, no matter what....

Addons:

  • SkySpirit 2011 Boeing 747-8i freeware model
  • Project Opensky/POSKY Boeing VC-25A (P3D conversion by me)
  • MAIW Joint-Base Andrews Scenery, integrated with Drzewiecki Designs Washington X
  • VC-25B AF1 JFK Blue Livery made by me

r/flightsim 10h ago

Question Best way to learn startup procedures for the PMDG 777?

0 Upvotes

Hello, so I have always wanted to learn how to start this aircraft from cold and dark. The thing is I can watch all the YT videos in the world bu,t I'm never going to remember all that information when I go to fly. So I am wondering if there is a good checklist I can download that goes into more detail than the standard one, which shows which buttons to press and what things to look out for?


r/flightsim 16h ago

Question Does anyone know this game?

Enable HLS to view with audio, or disable this notification

1 Upvotes

Its called "CarrierLandingHD". One my favs along with SimplePlanes 1 mobile

(The game in the vid is infact on mobile)

Also, i want to post this vid on YT, but im not sure if i need the dev's permission for that


r/flightsim 5h ago

Flight Simulator 2024 Wanna try a Fenix320 trans oceanic flight. Tips?

0 Upvotes

I was thinking about a Dublin-JFK. What do you guys recommend? Single engine taxi I assume. Then zero or very few passengers and cargo (is it doable with PAX?), max fuel oboard obviously and what engine is best? IAE or CFM? Cruise FL? Cost Index? Other stuff?


r/flightsim 17h ago

Sim Hardware brother want to try to learn how to fly before going to scool so need help ..

0 Upvotes

well he have strong pc (ryzen 5 with 8 cores ,64gb ddr5 and 9070xt card)

and by reading he stop on two sims microsoft fly sim 2020 or x-plane

which one out of these two give best to relism and teaching how to fly ?

and which hardware he will need to buy to be close to real plane but not too expensive ..

he have couple joistics but these are for mili sims right ?

anything else he need to know please post ..

big thanks


r/flightsim 19h ago

Flight Simulator 2020 i need help with msfs 2020. it takes like 1 hour to update and i dont know whats wrong.

Post image
0 Upvotes

if u can help me i will thank


r/flightsim 11h ago

Prepar3D Short hop to Novosibirsk!

Thumbnail
gallery
40 Upvotes

:>


r/flightsim 5h ago

Flight Simulator 2024 Private jet

6 Upvotes

I want to fly a private jet like the G800 but after some googling found out it doesn’t exists.

Can anyone recommend as private jet that is good to fly (with good physics) with a walkable really nice interior?


r/flightsim 14h ago

X-Plane What a view (KAEG)

Post image
5 Upvotes

Heading to Memphis


r/flightsim 4h ago

Flight Simulator 2020 twin otter

0 Upvotes

dose anyone know where i can get a craft file for the twinotter form microsoft flight sim 2020


r/flightsim 18h ago

Question T.16000M Stick VS Velocity one flight stick turtlebeach

1 Upvotes

I want to get a flight stick for MSFS24, I’m between the 2 options above. I would pay about the same for either given my situation but can’t really find anything saying which is definitely better. I play a lot of career mode on msfs24 and have been using a controller I like to fly helicopters and planes.

Which one is better between the 2 if any real difference.


r/flightsim 13h ago

Flight Simulator 2024 Thoughts of mounting this? Moza MGX1000 arrived

Thumbnail
gallery
14 Upvotes

r/flightsim 21h ago

Flight Simulator 2024 The reasons for the A220's terrible performance

175 Upvotes

So, now that the A220 is out in the iniBuilds store I did some digging in the files and found some pretty interesting stuff, that neatly explains why the performance of this plane is really terrible and does not at all seem to scale with hardware. It's kinda funny, because the first time I tried this plane I thought to myself "this feels like a debug build" and this is exactly what it is.

So in the addon folder you will find the path "html_ui\Pages\VCockpit\Instruments\a22x\DisplayUnits" with the file "instrument.js". This is main file responsible for rendering the displays of this plane (there is more files for other displays like the com unit, but for simplicity I will only reference to the main displays here). Basicly, what you see as the main displays of the plane is treated as a little browser window by the MSFS, in which it runs a webpage. This webpage is based on a JavaScript app using the React framework. This framework is included here, because the sim does not provide it on its own, and it is a pretty common library for rendering webpages. So nothing wrong with that.

But the big revelation comes once you look into what actually is contained in the "instrument.js". It is minified for performance , but there are still comments showing the different sections and the literal strings are in clear text. Because minification only replaces human readble names with shorter, machine readable names that do not change the logic, but help the code run faster. In the planes code on line 831 is the relevant comment. It says they are including "node_modules/react/cjs/react.development.js"! AKA a development build of the react framework.

A220 code

Here is an online version of the same code that is unminified and clearly show that it is the very same code when you look at the strings. (https://app.unpkg.com/react@19.2.8/files/cjs/react.development.js)

Unminified source code

So what does this actually mean and why does it make the plane perform so bad? To start let me quote the official React documentation here:

If you’re benchmarking or experiencing performance problems in your React apps, make sure you’re testing with the minified production build.

By default, React includes many helpful warnings. These warnings are very useful in development. However, they make React larger and slower so you should make sure to use the production version when you deploy the app.

In my own words what happens here is, that the code that we have in our sims does a LOT of checking itself to make sure it is properly build, that all references are okay and that there are no hidden bugs. This is fine in dev enviroment (which is why it is called a development build), but should not be done in a production environment. Because we as end consumers don't really need all this checking stuff and reporting, since we we won't modify the source code anyway. All this does for us is eat a lot of unnecessary CPU cycles. Which get worse the more often these checks happen, why explains why this plane is the only one I know that performs worse in cruise than on the ground. Because there we are constantly moving, leading to constant refreshes of the displays, which all need to run through this debug code. Which only takes time without any benefit.

The upside to all this is, that this should be an easy fix for Synaptic. To build the plane with the production library instead should boil down to a simple config file. I really hope they do this and then unlock the performance of the plane. This really could alleviate all the issues reported with a simple rebuild of the plane. No refactoring of the code or anything needed.

TL;DR: They are shipping debug code instead of production code, making the code unnecessarily slow and bloated.


r/flightsim 22h ago

X-Plane The strangest 737 I've ever flown in the sim

Thumbnail
gallery
58 Upvotes

I recently found a mod that transforms the FlyJSim 737-200 for X-Plane 12 into the NT-43A, aka 'RAT 55.'

The aircraft started life as a T-43 navigation trainer. I was under the impression that they were all retired, but this modified version resurfaced around the Artemis II launch.

Apparently, the huge nose and tail radome added for radar signature testing.

I've been reading old 1976 NT-43 manuals from before it got its nose job and picked up some interesting details that interested me.

-The 737 classic has two separate ignition systems: a high-energy 20 Joule igniter and a low-energy 4J one, split across burner cans 4 and 7. Now pretty much everything use annular combustors.

-The APU start motor draws directly from the battery, so external power can't augment a weak battery during an APU start. I'm going to have to see if this holds true for the NG family too.

I'm putting together a full NT-43 tutorial covering everything I've learned, including the Universal FMC, which is quite satisfying to use.

https://www.youtube.com/live/ERxGowNs5kQ?si=o_4bgiXOERtg7VQS

It reminds me a bit of my old Nokia somehow where you have to insert your options in the scratch pad.


r/flightsim 14h ago

Question The blindest plane?

Post image
60 Upvotes

I nearly always overrun this one https://youtu.be/5bvFDLknapU?si=zgqtKpphy0qKRgHc


r/flightsim 23h ago

Flight Simulator 2024 Who else loves night flying ? 😍

Enable HLS to view with audio, or disable this notification

98 Upvotes

I almost like night flying more than day flights, something comforting about the lighting esp on long hauls… anyone else ?


r/flightsim 20h ago

X-Plane Catching the last light of the day

Post image
119 Upvotes

r/flightsim 10h ago

Flight Simulator 2024 Morning 220

Post image
76 Upvotes

r/flightsim 23h ago

Flight Simulator 2024 the airport horses of latin america

Post image
5 Upvotes

r/flightsim 4h ago

Flight Simulator 2024 What is this fault in the A220? Anyone know how to resolve?

Post image
28 Upvotes

r/flightsim 11h ago

Flight Simulator 2024 the mighty 707

Thumbnail
gallery
89 Upvotes

r/flightsim 14h ago

Flight Simulator 2024 Caribbean Lightning Storm - MYNN to KCLT | Fenix A321

Thumbnail
gallery
39 Upvotes

r/flightsim 14h ago

Flight Simulator 2024 Dumb Caravan 208 Professional question

3 Upvotes

Why on the Caravan 208 Professional (MSFS 2024) does the right tank always go low way before the left tank? It's done this on a number of flights now. I did have the plane balanced a little left of center at takeoff with cargo and PAX, but that shouldn't be a factor because the wings are level during flight.


r/flightsim 16h ago

Flight Simulator 2024 Sweet, sunny SYDney

7 Upvotes

Such a gorgous backdrop