This commit is contained in:
syui 2025-02-05 21:03:16 +09:00
parent 674cd347c5
commit 73a9bac54e
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56
9 changed files with 52 additions and 15 deletions

2
.gitignore vendored
View File

@ -9,3 +9,5 @@
/scpt/*.jpeg
/scpt/*.png
config
book/_book
book/node_modules

View File

@ -2,7 +2,5 @@
* [Unreal Engine 5 Guild Book](README.md)
* [start](start/README.md)
* [part 1](c1/README.md)
* [quick start](c1/1.md)
* [example](c1/2.md)
* [end](end/README.md)

View File

@ -1 +0,0 @@
##

View File

@ -1 +0,0 @@
##

View File

@ -1 +0,0 @@
##

2
book/end/README.md Normal file
View File

@ -0,0 +1,2 @@
# end

10
book/gitbook.md Normal file
View File

@ -0,0 +1,10 @@
## start gitbook(honkit)
```sh
$ nvm use 23
$ npm install honkit --save-dev
$ npx honkit init
$ npx honkit serve
$ npx honkit build
```

8
book/package.json Normal file
View File

@ -0,0 +1,8 @@
{
"dependencies": {
"got": "^14.4.5"
},
"devDependencies": {
"honkit": "^6.0.2"
}
}

View File

@ -1,12 +1,32 @@
## start
## ueとは
|name|version|
|---|---|
|unreal engine|5.5|
|unrealengine|5|
|ue|5|
ゲームエンジンです。ゲーム制作に利用します。
- https://unrealengine.com/
- https://unrealengine.com/ue-on-github
- https://github.com/EpicGames/UnrealEngine
`Unreal Engine``ue`と略されます。最新バージョン(latest version)は`5`なので、`ue5`となります。本書では略語を使用します。
`ue`の他には`unity`, `godto`が有名です。`DirectX`というものがあり、例えば、`DX12`からGPUに命令を送ることができます。ゲームエンジンの多くは`DX11`, `DX12`を使用します。
|name|version|url|
|---|---|---|
|unreal engine|https://unrealengine.com/|
|github|https://github.com/EpicGames/UnrealEngine|
ソース(source)からビルド(build)して使うこともできます。一部でbuildしないと使えない機能があります。
## 本書の目的
ue5でゲームを作成するまでの過程をまとめます。
主に`example`形式で記述し、実行するとその通りの結果になることを目指します。
## 用語の解説
|title|short|body|
|---|---|---|
|unrealengine|ue|アンリアルエンジン|
|build||ビルド、osで実行できる形式にすること。windowsなら`.exe`|
|compile||コンパイル、コンピュータで実行できる形式にすること。buildと同じ意味で使われる|
|source|src|ソース、主にソースコードの略|
|deploy||サーバーに実行ファイルを置くこと|
|example|例、uriはexample.comが有名|