2022-03-15 13:29:32 +01:00
# Prop2Ds Module
This is a c++ engine module for the Godot Engine.
It gives you props, and editor utilities to convert scenes to props.
2022-03-16 09:02:48 +01:00
It supports both godot 3.2 and 4.0 (master [last tested commit ](https://github.com/godotengine/godot/commit/b7e10141197fdd9b0dbc4cfa7890329510d36540 )). Note that since 4.0 is still in very early stages I only
2022-03-15 13:29:32 +01:00
check whether it works from time to time.
# Pre-built binaries
2022-03-16 09:02:48 +01:00
You can grab a pre-built editor binary from the [Broken Seals ](https://github.com/Relintai/broken_seals/releases )
2022-03-15 13:29:32 +01:00
repo, should you want to. It contains all my modules.
# Optional Dependencies
[Mesh Data Resource ](https://github.com/Relintai/mesh_data_resource ): Support for merged meshes, even in gles2.\
2022-09-10 04:16:50 +02:00
[Texture Packer ](https://github.com/Relintai/texture_packer ): Prop2D Instance will use this to merge textures.
2022-03-15 13:29:32 +01:00
# Prop2DData
2022-12-22 19:51:25 +01:00
Prop2Ds are basically 3D scenes in a simple format, so other things can easily process them without instancing.
2022-03-15 13:29:32 +01:00
2022-03-16 09:02:48 +01:00
For example if you create a building from MeshDataInstances, and then convert that scene to a prop, Voxelman
2022-03-15 13:29:32 +01:00
can spawn it, merge it's meshes, and create lods without any scene instancing.
Prop2DData is the main class you'll use, it's main purpose it to store a list of Prop2DDataEntries.
# Prop2DDataEntries
These are the classes that actually store data.
They contain 4 methods for scene->prop conversion, namely:
```
//Whether or not this Prop2DDataEntry can process the given Node.
virtual bool _processor_handles(Node *node);
2022-12-22 19:51:25 +01:00
//Save the given Node into the given prop_data any way you like, at transform.
2022-03-15 13:29:32 +01:00
virtual void _processor_process(Ref< Prop2DData > prop_data, Node *node, const Transform &transform);
//Turn Prop2DDataEntry back into a Node
virtual Node *_processor_get_node_for(const Transform &transform);
//Whether the system should skip evaluating the children of a processes Node or not. See Prop2DDataScene, or Prop2DDataProp2D.
virtual bool _processor_evaluate_children();
```
# Prop2DInstances
Prop2DInstances are not yet finished.
They will be able to merge meshes, texture etc from a Prop2D, and also generate lods for it.
Essentially they will be a more advanced MeshInstance.
Voxelman implements all of this, just haven't finished porting it yet.
# Prop2DUtils Singleton
The Prop2DUtils singleton helps with scene->prop conversion.
You can register new Prop2DDataEntries as processors, should you need to.
# Scene conversion
2022-03-16 09:02:48 +01:00
You can either click the new "To Prop2D" button on the menubar of the 3D scene for a quick conversion,
2022-03-15 13:29:32 +01:00
or look into Project->Tools.
# Building
1. Get the source code for the engine.
If you want Godot 3.2:
```git clone -b 3.2 https://github.com/godotengine/godot.git godot```
If you want Godot 4.0:
```git clone https://github.com/godotengine/godot.git godot```
2. Go into Godot's modules directory.
```
cd ./godot/modules/
```
3. Clone this repository
```
git clone https://github.com/Relintai/props props
```
4. Build Godot. [Tutorial ](https://docs.godotengine.org/en/latest/development/compiling/index.html )