You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-29Lines changed: 29 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,6 @@
16
16
17
17
- Navigraph DFD Format: Leverage specialized support for Navigraph's DFD format, based on SQLite, which includes an SQL interface on the commbus for efficient data handling.
18
18
- Javascript and WASM support: The navdata interface is accessible from both Javascript (Coherent) and WASM, providing flexibility for developers.
19
-
- Supports updating of custom data formats.
20
19
- Xbox compatibility: Works on PC and Xbox.
21
20
- Persistence: All data is persisted in the `work` folder of the aircraft.
22
21
@@ -46,18 +45,19 @@ Here's an overview on the structure of this repository, which is designed to be
46
45
```
47
46
48
47
- Note that if you already have a `VCockpit` with `NO_TEXTURE` you can just add another `htmlgauge` to it, while making sure to increase the index
48
+
49
49
4.**Optional**: Create a `Navigraph/config.json` file to assist with Sentry reports. This info will be reported to us should any error occur in the library. We will use this to directly reach out to you (the developer) for these errors.
50
50
51
-
- The file must look like
51
+
- The file must look like
52
52
53
-
```json
54
-
{
55
-
"addon": {
56
-
"developer": "Navigraph",
57
-
"product": "Sample Aircraft"
58
-
}
59
-
}
60
-
```
53
+
```json
54
+
{
55
+
"addon": {
56
+
"developer": "Navigraph",
57
+
"product": "Sample Aircraft"
58
+
}
59
+
}
60
+
```
61
61
62
62
## Dealing with Bundled Navigation Data
63
63
@@ -101,30 +101,30 @@ The gauge communicates using the following event names (all types referenced can
101
101
Below is an example of communicating with the interface in JS. (We provide a JS wrapper, the code below is just a basic example to show how it works). Please read the CommBus documentation to determine how to interface with CommBus in your chosen language. `src/js` contains our JS wrapper, it is also a useful example for implementing a fully fleshed out wrapper.
0 commit comments