import {Fragment} from 'react'; import styled from '@emotion/styled'; import {Alert} from 'sentry/components/alert'; import ExternalLink from 'sentry/components/links/externalLink'; import {Layout, LayoutProps} from 'sentry/components/onboarding/gettingStartedDoc/layout'; import {ModuleProps} from 'sentry/components/onboarding/gettingStartedDoc/sdkDocumentation'; import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step'; import {t, tct} from 'sentry/locale'; // Configuration Start export const steps = ({ dsn, }: { dsn?: string; } = {}): LayoutProps['steps'] => [ { type: StepType.INSTALL, description: (

{tct( "Install the package via the [link:Unity Package Manager] using a Git URL to Sentry's SDK repository:", { link: ( ), } )}

), configurations: [ { language: 'bash', code: 'https://github.com/getsentry/unity.git#1.5.0', }, ], additionalInfo: ( {tct( 'The Unity SDK now supports line numbers for IL2CPP. The feature is currently in beta, but you can enable it at [code:Tools -> Sentry -> Advanced -> IL2CPP] line numbers. To learn more check out our [link:docs].', { code: , link: ( ), } )} ), }, { type: StepType.CONFIGURE, description: (

{tct( "Access the Sentry configuration window by going to Unity's top menu: [toolsCode:Tools] > [sentryCode:Sentry] and enter the following DSN:", {toolsCode: , sentryCode: } )}

), configurations: [ { language: 'bash', code: dsn, }, ], additionalInfo: ( {t("And that's it! Now Sentry can capture errors automatically.")}

{tct('If you like additional contexts you could enable [link:Screenshots].', { link: ( ), })}

), }, { type: StepType.VERIFY, description: t( 'Once it is configured with the DSN you can call the SDK from anywhere:' ), configurations: [ { language: 'csharp', code: ` using Sentry; // On the top of the script SentrySdk.CaptureMessage("Test event"); `, }, ], }, { title: t('Troubleshooting'), description: ( {t( "Confirm the URL doesn't have a trailing whitespace at the end. The Unity Package Manager will fail to find the package if a trailing whitespace is appended." )}

{tct( "If you're running into any kind of issue please check out our [troubleshootingLink:troubleshooting page] or [raiseAnIssueLink:raise an issue].", { troubleshootingLink: ( ), raiseAnIssueLink: ( ), } )}

), }, ]; // Configuration End export function GettingStartedWithUnity({dsn, ...props}: ModuleProps) { return ; } export default GettingStartedWithUnity; const AlertWithoutMarginBottom = styled(Alert)` margin-bottom: 0; `;