8000 GitHub - momintlh/UnityCord
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

momintlh/UnityCord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UnityCord

UnityCord acts as a bridge for Discord's Embedded App SDK and provides additional utilities to simplify creating Discord activities with Unity.

Currently, there are no official UnityCord documentation pages, but you can easily follow the official Discord documentation since the differences are minimal.

Embedded-sdk-app (JS/TS) UnityCord (C#)
    import {patchUrlMappings} from '@discord/embedded-app-sdk';
    patchUrlMappings([{prefix: '/foo', target: 'foo.com'}]);
using UnityCord;

List<Mapping> mappings = new List<Mapping> {
    new Mapping { Prefix = "foo", Target = "foo.com" }
};

Utils.PatchUrlMappings(mappings);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published
0