https://github.com/ploptaw/minecraft-cit-template
This is a template repository that makes it easy to create optimized custom item textures.
https://github.com/ploptaw/minecraft-cit-template
custom-item-texture minecraft minecraft-resourcepack packsquash
Last synced: 5 months ago
JSON representation
This is a template repository that makes it easy to create optimized custom item textures.
- Host: GitHub
- URL: https://github.com/ploptaw/minecraft-cit-template
- Owner: ploptaw
- License: mit
- Created: 2025-02-17T08:04:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-17T14:38:38.000Z (over 1 year ago)
- Last Synced: 2025-04-19T01:23:11.727Z (about 1 year ago)
- Topics: custom-item-texture, minecraft, minecraft-resourcepack, packsquash
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minecraft CIT Template

[](https://github.com/new?template_name=YOUR_TEMPLATE_NAME)
[](LICENSE)
---
## 🙏 謝辞(Acknowledgment)
本プロジェクトの最適化処理は,オープンソースツール **[PackSquash-action](https://github.com/ComunidadAylas/PackSquash-action)** によって実現されています.
開発チームの皆様に心より感謝申し上げます.
---
## 🚀 クイックスタート(Quick Start)
1. **[Use Template]** ボタンをクリックし,新規リポジトリを作成.
2. 作成したリポジトリをローカル環境にクローン.
```sh
git clone https://github.com/YOUR_USERNAME/YOUR_REPOSITORY.git
```
3. `assets/minecraft/optifine/cit/` にカスタムテクスチャを追加.
4. GitHub Actions によりリソースパックが自動でビルドされます.
---
## 📦 サンプル(Samples)
このテンプレートには以下のサンプルが含まれています:

- **サンプル A**:アイテムにカスタムテクスチャを適用.
- **サンプル B**:ブロックにカスタムテクスチャを適用.
- **サンプル C**:アイテムにアニメーションテクスチャを適用.
- **サンプル D**:ブロックにカスタムモデルを適用.
---
## 🛠️ カスタマイズ例(Customization Example)
以下のプロパティを設定することで,特定のアイテムにカスタムテクスチャを適用できます.
```properties
type=item
items=minecraft:stick
texture=sampleA
nbt.display.Name=sampleA
```
---
## 📜 Pack Format 対応表(Pack Format Compatibility)
| pack_format | Minecraft Version |
| ----------- | ----------------- |
| 1 | 1.61-1.89 |
| 2 | 1.9-1.10.2 |
| 3 | 1.11-1.12.2 |
| 4 | 1.13-1.14.4 |
| 5 | 1.15-1.16.1 |
| 6 | 1.16.2-1.16.5 |
| 7 | 1.17-1.17.1 |
| 8 | 1.18-1.18.2 |
| 9 | 1.19-1.19.2 |
| 12 | 1.19.3 |
| 13 | 1.19.4 |
| 15 | 1.20-1.20.1 |
| 18 | 1.20.2 |
| 22 | 1.20.3-1.20.4 |
| 32 | 1.20.5- |
| 34 | 1.21- |
### `pack.mcmeta` の例:
```json
{
"pack": {
"pack_format": 8, // ver1.18.2
"description": "My Pack"
}
}
```
---
## 🔗 参考リンク(Resources)
より詳しい情報は,以下のリンクをご参照ください:
- [OptiFine ドキュメント](https://optifine.readthedocs.io/index.html)
- [PackSquash オプションファイル](https://github.com/ComunidadAylas/PackSquash/wiki/Options-files)