Permalink
Showing
with
36,799 additions
and 28,531 deletions.
- +106 −5 .gitignore
- BIN Content/EntryWidget_C.uasset
- +1,247 −666 Content/Scripts/aliases.js
- +1 −0 Content/Scripts/demos/build/demo-browserEd.js
- +1 −1 Content/Scripts/demos/lib/npm.js
- +2 −1 Content/Scripts/demos/src/demo-browserEd.jsx
- +2 −0 Content/Scripts/extension-exampleWindow.js
- +1 −1 Content/Scripts/package.json
- +8,981 −9,104 Content/Scripts/typings/_part_0_ue.d.ts
- +17,739 −17,648 Content/Scripts/typings/_part_1_ue.d.ts
- +8,718 −1,104 Content/Scripts/typings/ue.d.ts
- +1 −1 Demo.uproject
| @@ -1,7 +1,108 @@ | ||
| Plugins/* | ||
| Saved/* | ||
| Intermediate/* | ||
| DerivedDataCache/* | ||
| Content/* | ||
| # Backup files from git mergetool | ||
| *.orig | ||
|
|
||
| # TortoiseGit configuration file is too user specific and should not be shared | ||
| .tgitconfig | ||
|
|
||
| # Compiled Object files | ||
| *.slo | ||
| *.lo | ||
| *.o | ||
| *.obj | ||
|
|
||
| # Precompiled Headers | ||
| *.gch | ||
| *.pch | ||
|
|
||
| # Compiled Dynamic libraries | ||
| *.so | ||
| *.dylib | ||
| *.dll | ||
|
|
||
| # Fortran module files | ||
| *.mod | ||
|
|
||
| # Compiled Static libraries | ||
| *.lai | ||
| *.la | ||
| *.a | ||
| *.lib | ||
|
|
||
| # Executables | ||
| *.exe | ||
| *.out | ||
| *.app | ||
| *.ipa | ||
|
|
||
| # These project files can be generated by the engine | ||
| *.xcodeproj | ||
| *.xcworkspace | ||
| *.sln | ||
| *.suo | ||
| *.opensdf | ||
| *.sdf | ||
| *.tss | ||
| *.VC.db | ||
| *.VC.opendb | ||
| .vs/ | ||
|
|
||
| # Precompiled Assets | ||
| SourceArt/**/*.png | ||
| SourceArt/**/*.tga | ||
|
|
||
| # Binary Files | ||
| Binaries/ | ||
| Plugins/*/Binaries/ | ||
|
|
||
| # Builds | ||
| Build/* | ||
|
|
||
| # Whitelist PakBlacklist-<BuildConfiguration>.txt files | ||
| !Build/*/ | ||
| Build/*/** | ||
| !Build/*/PakBlacklist*.txt | ||
|
|
||
| # Don't ignore icon files in Build | ||
| !Build/**/*.ico | ||
|
|
||
| # Built data for maps | ||
| *_BuiltData.uasset | ||
|
|
||
| # Configuration files generated by the Editor | ||
| Saved/ | ||
|
|
||
| # Compiled source files for the engine to use | ||
| Intermediate/ | ||
| Plugins/*/Intermediate/ | ||
|
|
||
| # Pre-compiled headers | ||
| ipch/ | ||
|
|
||
| # Cache files for the editor to use | ||
| DerivedDataCache/ | ||
|
|
||
| # Windows | ||
| Thumbs.db | ||
| ehThumbs.db | ||
| *.lnk | ||
|
|
||
| # Mac OS X | ||
| .DS_Store | ||
| .DS_Store? | ||
| .AppleDouble | ||
| .LSOverride | ||
| ._* | ||
|
|
||
| # Linux | ||
| *~ | ||
| .directory | ||
|
|
||
| # vim | ||
| [._]*.s[a-w][a-z] | ||
| [._]s[a-w][a-z] | ||
| *.un~ | ||
| Session.vim | ||
| .netrwhist | ||
|
|
||
| !Content/Scripts | ||
| Content/Scripts/node_modules |
Binary file not shown.
Oops, something went wrong.