When you have a crash, or a weird behavior, always check the player log which is located here - <user>\AppData\Local\Packages<productname>\TempState\UnityPlayer.log. When submitting a bug, please include the player log as well, it can give invaluable information.
Actualmente solo es posible depurar scripts C#.
Note: Universal Windows Platform are running with Microsoft .NET, that’s why it’s not possible to debug scripts with MonoDevelop, instead you have to use Visual Studio 2013.
Aquí hay unos pocos pasos de cómo hacerlo:
Cuando usted construya la aplicación, usted puede decirle a Visual Studio que pare durante las excepciones. Vaya a Debug -> Exceptions:
Tenga en cuenta: habilitar todas las excepciones hará que Visual Studio pare para las excepciones inofensivas como WinRT originate error, WinRT transform error, ignore esos y simplemente continúe.
Habrá casos dónde usted recibirá un fallo en el motor de Unity en sí, usted puede obtener información útil si es capaz de resolver el callstack, y proporcionarlo en el reporte de bug si se necesita.
Tenga en cuenta: Los callstacks del motor de Unity se pueden resolver si los archivos .pdb están disponibles, Unity proporciona unos archivos .pdb para configuración de Depuración.
Suppose you’ve encountered a crash in Unity engine and hit the breakpoint (Note: Visual Studio can stop at the crash if you enable all exceptions via Debug -> Exceptions menu), go to Debug -> Windows -> Call Stack, Call Stack window should open up, if you don’t see function names from UnityPlayer.dll, that means the symbols weren’t loaded, to fix that, right click on that function and Load Symbols, UnityPlayer.pdb file will be located in [PathToYourProject]>\Players\[Windows80 or Windows81]\[X86 or ARM or X64]\debug.
Este es en un log (registro) que podría proporcionar información sobre por qué la aplicación no se ejecuto con el depurador, se puede encontrar en :
Control Panel -> Administrative Tools -> Event Viewer -> Applications And Services Log -> Microsoft -> Windows -> Apps -> Microsoft-Windows-TWinUI/Operational
• 2017–05–16 Page amended with no editorial review