-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aafb4f5
commit baa762b
Showing
6 changed files
with
87 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# Finorza | ||
A Minecraft 1.16 mod for simulating autonomous agents. Requires Fabric Loader & Fabric API. | ||
<h1> | ||
<img src="https://raw.githubusercontent.com/vitri-ent/finorza/main/src/main/resources/assets/icon.png" width="24"> | ||
<span>Fiиorza</span> | ||
</h1> | ||
A Minecraft 1.16 mod for simulating autonomous agents. | ||
|
||
https://github.com/vitri-ent/finorza/assets/61946759/54c3932f-b414-45c1-8dd4-257cc4f28bff | ||
|
||
## Requirements | ||
- **Minecraft** 1.16.5 w/ [Fabric](https://fabricmc.net) | ||
- [**Fabric API** v0.42](https://modrinth.com/mod/fabric-api/version/0.42.0+1.16) | ||
- [**Cloth Config** v4.17](https://modrinth.com/mod/cloth-config/version/4.17.101) | ||
- [**Mod Menu** v1.16](https://modrinth.com/mod/modmenu/version/1.16.23) | ||
|
||
Also verified to run with Sodium, Lithium, and LazyDFU. Most other optimization mods should work. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
syntax = "proto3"; | ||
|
||
package finorza.proto.v1; | ||
|
||
option java_multiple_files = true; | ||
option java_package = "io.pyke.vitri.finorza.inference.rpc.proto.v1"; | ||
|
||
message ObservationFrame { | ||
bytes data = 1; | ||
uint32 width = 2; | ||
uint32 height = 3; | ||
} | ||
|
||
message ObservationData { | ||
ObservationFrame frame = 1; | ||
optional string biome = 2; | ||
optional bool above_ground = 3; | ||
optional bool on_ground = 4; | ||
optional bool swimming = 5; | ||
optional bool raining = 6; | ||
optional float health = 7; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters