Skip to content

Commit f46db4c

Browse files
committed
Added: Essential and recomended files
1 parent ccdf786 commit f46db4c

17 files changed

+312
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
.vscode
21
Resources/*

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"visualstudiotoolsforunity.vstuc"
4+
]
5+
}

.vscode/launch.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Unity",
6+
"type": "vstuc",
7+
"request": "attach"
8+
}
9+
]
10+
}

.vscode/settings.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"files.exclude": {
3+
"**/.DS_Store": true,
4+
"**/.git": true,
5+
"**/.gitignore": true,
6+
"**/.gitmodules": true,
7+
"**/*.booproj": true,
8+
"**/*.pidb": true,
9+
"**/*.suo": true,
10+
"**/*.user": true,
11+
"**/*.userprefs": true,
12+
"**/*.unityproj": true,
13+
"**/*.dll": true,
14+
"**/*.exe": true,
15+
"**/*.pdf": true,
16+
"**/*.mid": true,
17+
"**/*.midi": true,
18+
"**/*.wav": true,
19+
"**/*.gif": true,
20+
"**/*.ico": true,
21+
"**/*.jpg": true,
22+
"**/*.jpeg": true,
23+
"**/*.png": true,
24+
"**/*.psd": true,
25+
"**/*.tga": true,
26+
"**/*.tif": true,
27+
"**/*.tiff": true,
28+
"**/*.3ds": true,
29+
"**/*.3DS": true,
30+
"**/*.fbx": true,
31+
"**/*.FBX": true,
32+
"**/*.lxo": true,
33+
"**/*.LXO": true,
34+
"**/*.ma": true,
35+
"**/*.MA": true,
36+
"**/*.obj": true,
37+
"**/*.OBJ": true,
38+
"**/*.asset": true,
39+
"**/*.cubemap": true,
40+
"**/*.flare": true,
41+
"**/*.mat": true,
42+
"**/*.meta": true,
43+
"**/*.prefab": true,
44+
"**/*.unity": true,
45+
"build/": true,
46+
"Build/": true,
47+
"Library/": true,
48+
"library/": true,
49+
"obj/": true,
50+
"Obj/": true,
51+
"ProjectSettings/": true,
52+
"temp/": true,
53+
"Temp/": true
54+
},
55+
"dotnet.defaultSolution": "bitmap-font-creator.sln"
56+
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.0]
9+
10+
Initial version
11+
12+
[1.0.0]: https://github.com/kleber-swf/unity-bitmap-font-creator/releases/tag/1.0.0

CHANGELOG.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Documentation.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Documentation/screenshot-01.png

32.6 KB
Loading

Documentation/screenshot-01.png.meta

Lines changed: 123 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "dev.klebersilva.tools.bitmapfontcreator"
3+
}

0 commit comments

Comments
 (0)