File tree Expand file tree Collapse file tree
src/pages/quick-start/builder Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export const ANGULAR = "ANGULAR";
3333export const HTML = "HTML" ;
3434export const ANDROID = "ANDROID" ;
3535export const IOS = "IOS" ;
36+ export const WEBGL = "WEBGL" ;
3637export const REACT_NATIVE = "REACT_NATIVE" ;
3738export const FLUTTER = "FLUTTER" ;
3839export const UNITY = "UNITY" ;
@@ -77,6 +78,7 @@ export const LANGS_WEB_MPC_CORE_KIT: DisplayChoice[] = [
7778
7879const android = { key : ANDROID , displayName : "Android" } ;
7980const ios = { key : IOS , displayName : "iOS/Swift" } ;
81+ const webgl = { key : WEBGL , displayName : "WebGL" } ;
8082
8183export const LANGS_ANDROID : DisplayChoice [ ] = [ android ] ;
8284
@@ -86,7 +88,7 @@ export const LANGS_REACT_NATIVE: DisplayChoice[] = [ios, android];
8688
8789export const LANGS_FLUTTER : DisplayChoice [ ] = [ android , ios ] ;
8890
89- export const LANGS_UNITY : DisplayChoice [ ] = [ android , ios ] ;
91+ export const LANGS_UNITY : DisplayChoice [ ] = [ android , ios , webgl ] ;
9092
9193export const LANGS_NODE : DisplayChoice [ ] = [ { key : NODE , displayName : "NodeJS" } ] ;
9294
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ const sdks = {
8383 // PNP Unity SDK
8484 PNP_UNITY_ANDROID : pnp_unity ,
8585 PNP_UNITY_IOS : pnp_unity ,
86+ PNP_UNITY_WEBGL : pnp_unity ,
8687 // SFA Web SDK
8788 SFA_WEB_ANGULAR : sfa_web_angular ,
8889 SFA_WEB_NEXTJS : sfa_web_nextjs ,
@@ -135,6 +136,7 @@ const embed_links = {
135136 // PNP Unity SDK
136137 PNP_UNITY_ANDROID : "https://w3a.link/pnp-unity-android-quick-start" ,
137138 PNP_UNITY_IOS : "" , // "https://w3a.link/pnp-unity-ios-quick-start"
139+ PNP_UNITY_WEBGL : "https://w3a.link/pnp-unity-webgl-quick-start" ,
138140 // SFA Web SDK
139141 SFA_WEB_ANGULAR : "https://w3a.link/sfa-angular-quick-start" ,
140142 SFA_WEB_NEXTJS : "https://w3a.link/sfa-nextjs-quick-start" ,
You can’t perform that action at this time.
0 commit comments