Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1e1b699

Browse files
committed
Added Packtpub Learn Unity 3D
1 parent 4f549d0 commit 1e1b699

File tree

103 files changed

+10829
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+10829
-17
lines changed

‎BitDigree-Unity-Courses/source/BitDigree-Courses-2D/.gitignore‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Unity Packages
2-
/Assets/Low_Swordman
3-
/Assets/Painted HQ 2D Forest Medieval Background
2+
/Assets/Low_Swordman/
3+
/Assets/Painted HQ 2D Forest Medieval Background/
44

55

66
# This .gitignore file should be placed at the root of your Unity project directory

‎BitDigree-Unity-Courses/source/BitDigree-Courses-3D/.gitignore‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Unity Packages
2-
/Assets/ArtzkillZnetTexturePack01
3-
/Assets/DogKnight
4-
/Assets/FImpossible Creations
5-
/Assets/Skybox
6-
/Assets/Standard Assets
7-
/Assets/Textures
8-
/Assets/ZombieAnimationPackFree
9-
/Assets/unity-chan!
2+
/Assets/ArtzkillZnetTexturePack01/
3+
/Assets/DogKnight/
4+
/Assets/FImpossible Creations/
5+
/Assets/Skybox/
6+
/Assets/Standard Assets/
7+
/Assets/Textures/
8+
/Assets/ZombieAnimationPackFree/
9+
/Assets/unity-chan!/
1010

1111

1212
# This .gitignore file should be placed at the root of your Unity project directory
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.txt]
16+
indent_style = tab
17+
indent_size = 4
18+
19+
[*.md]
20+
trim_trailing_whitespace = false
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* text=auto
2+
3+
# Documentation
4+
*.md text diff=markdown
5+
LICENSE text
6+
.gitignore text
7+
.editorconfig text
8+
.gitattributes text

‎Packtpub-Unity-Tutorials/.gitignore‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Include your project-specific ignores in this file
2+
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
3+
# Useful .gitignore templates: https://github.com/github/gitignore
4+
5+
.vs
6+
.vscode
7+
.vsconfig

‎Packtpub-Unity-Tutorials/README.md‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# :mortar_board: :video_game: Packtpub for Unity Game Development
2+
3+
:heavy_check_mark: Completed
4+
:o: Incomplete
5+
6+
## :beginner: :books: Packtpub Unity Tutorials
7+
8+
1. :heavy_check_mark: What you need to know about Unity 5
9+
2. :o: Unity 5.x Cookbook
10+
3. :o: Unity 4 Game Development HOTSHOT
11+
4. :o: Unity 4.x Cookbook
12+
13+
## :beginner: :books: Humble Bundle Unity Tutorials
14+
15+
1. :o: Learn Unity3D Programming with UnityScript: Unity's JavaScript for Beginners -- Humble Bundle Books | Code Your Own Games
16+
17+
## :beginner: :books: Other Unity Tutorials
18+
19+
1. :o: Introduction to Unity (Free Downloadable eBook) -- Mammoth Interactive
20+
2. :o: Learn Unity by Building a 3D Runner Game (Free Downloadable eBook) -- Mammoth Interactive
21+
3. :o: Programming a Game with Unity: A Beginner's Guide -- TradePub
22+
23+
## :memo: Version
24+
25+
This project was created with Unity 2019433f1
26+
27+
## :page_with_curl: License
28+
29+
The source code I created is free -- see the [LICENSE](UNLICENSE) file for details.
30+
Please also have a look at the [Asset Store Terms of Service and EULA](https://unity3d.com/legal/as_terms) for use of the game assets.

‎Packtpub-Unity-Tutorials/UNLICENSE‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Game Assets
2+
3+
The assets folder will keep all game releated assets. Music, sound, sprites, 3D models and other game graphics.
4+
Create sub folders for each type of resource.
5+
6+
```folders
7+
.
8+
└── assets/
9+
├── concept-art
10+
├── music
11+
├── sounds
12+
├── sprites
13+
└── models
14+
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Aseprite
2+
*.aseprite binary
3+
*.ase binary
4+
5+
## Graphics
6+
*.gif binary
7+
*.jpg binary
8+
*.jpeg binary
9+
*.png binary
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.blend binary

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /