Hi everyone,
I am developing a new InGamePanel (HTML/JS) and I am stuck in a state where the package builds successfully, but the panel never appears in the toolbar list.
Here is the situation:
- Build is Successful: 0 Failed, 0 Skipped, 2 done.
- Console Log: Shows “Package mounted” and “Package registered” for my package.
- The Issue: The panel is completely missing from the Toolbar settings (Gear icon).
- Debugger: The Coherent GT Debugger does NOT list my panel’s view (SimMatePanel), which suggests the game is rejecting the XML definition before loading the HTML.
What I have tried:
- Verified OutputDir is “html_ui/InGamePanels/SimMatePanel/”.
- Switched to use a normal png image for the icon (used to use an svg image before)
- Cleaned and Rebuilt multiple times.
- Moved package to Community folder and restarted Sim
Here is my XML:
<?xml version="1.0" encoding="utf-8"?> SIMMATE_BRIDGE Utilities SimMate Bridge SimMate Flight Assistant Panel<HtmlFile>InGamePanels/SimMatePanel/SimMatePanel.html</HtmlFile>
<IconFile>InGamePanels/SimMatePanel/test_white_icon.png</IconFile>
<WindowTitle>SimMate Bridge</WindowTitle>
<DefaultWidth>400</DefaultWidth>
<DefaultHeight>600</DefaultHeight>
<FloatingWindow>true</FloatingWindow>
<Minimizable>true</Minimizable>
<Movable>true</Movable>
<Resizable>true</Resizable>
layout.json file:
{
“content”: [
{
“path”: “ContentInfo/qinnehdev-simmate/Thumbnail.jpg”,
“size”: 5446,
“date”: 134143336981551547
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/sentry_lite.js”,
“size”: 3944,
“date”: 134143461414975910
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/SimMatePanel.css”,
“size”: 7214,
“date”: 134143805917070305
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/SimMatePanel.html”,
“size”: 1545,
“date”: 134144646900056672
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/SimMatePanel.js”,
“size”: 10469,
“date”: 134144646899864351
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/SimMatePanel.xml”,
“size”: 653,
“date”: 134145012496918492
},
{
“path”: “html_ui/InGamePanels/SimMatePanel/test_white_icon.png”,
“size”: 375,
“date”: 134145009529194072
}
]
}
Has anyone seen a case where a mounted package is silently ignored like this?
(note: this is my first MSFS addon, so this is a steep learning curve for me)
Help will be much appreciated!



