Skip to content

Commit

Permalink
Merge pull request #35 from markusmoenig/poly
Browse files Browse the repository at this point in the history
Poly
  • Loading branch information
markusmoenig authored Dec 9, 2024
2 parents 9eebbd5 + ecd5b8c commit e06fc48
Show file tree
Hide file tree
Showing 61 changed files with 5,945 additions and 1,552 deletions.
1,084 changes: 877 additions & 207 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion StarterProject.eldiron

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions creator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ Create classical RPGs with Eldiron.
# [lib]
# name = "rustapi"
# crate-type = ["staticlib"]

# vek = { version = "0.17", default-features = false, features = ["rgba"] }
# euc = { git = "https://github.com/zesterer/euc" }
Binary file added creator/embedded/bricks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added creator/embedded/cursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added creator/embedded/dot-outline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed creator/embedded/geo_wall_back.png
Binary file not shown.
Binary file removed creator/embedded/geo_wall_front.png
Binary file not shown.
Binary file removed creator/embedded/geo_wall_left.png
Binary file not shown.
Binary file removed creator/embedded/geo_wall_middlex.png
Binary file not shown.
Binary file removed creator/embedded/geo_wall_middley.png
Binary file not shown.
Binary file removed creator/embedded/geo_wall_right.png
Binary file not shown.
Binary file removed creator/embedded/input.png
Binary file not shown.
Binary file added creator/embedded/joystick.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added creator/embedded/line-segment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added creator/embedded/polygon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
261 changes: 50 additions & 211 deletions creator/src/editor.rs

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions creator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pub mod brushes;
pub mod brushlist;
pub mod editor;
pub mod externals;
pub mod mapeditor;
pub mod materialeditor;
pub mod minimap;
pub mod misc;
Expand All @@ -16,8 +17,6 @@ pub mod regionfxeditor;
pub mod screeneditor;
pub mod self_update;
pub mod sidebar;
pub mod terraineditor;
pub mod tileeditor;
pub mod tilefxeditor;
pub mod tilemapeditor;
pub mod tilepicker;
Expand All @@ -44,6 +43,7 @@ pub mod prelude {

pub use crate::brushlist::*;
pub use crate::externals::*;
pub use crate::mapeditor::*;
pub use crate::materialeditor::*;
pub use crate::misc::*;
pub use crate::modeleditor::*;
Expand All @@ -52,8 +52,6 @@ pub mod prelude {
pub use crate::regionfxeditor::*;
pub use crate::screeneditor::*;
pub use crate::sidebar::*;
pub use crate::terraineditor::*;
pub use crate::tileeditor::*;
pub use crate::tilefxeditor::*;
pub use crate::tilemapeditor::*;
pub use crate::tilepicker::*;
Expand All @@ -64,27 +62,29 @@ pub mod prelude {
pub use crate::undo::*;

pub use crate::tools::code::CodeTool;
pub use crate::tools::draw::DrawTool;
pub use crate::tools::eraser::EraserTool;
// pub use crate::tools::draw::DrawTool;
// pub use crate::tools::eraser::EraserTool;
pub use crate::tools::fx::FXTool;
pub use crate::tools::game::GameTool;
pub use crate::tools::mapobjects::MapObjectsTool;
pub use crate::tools::model::edit::ModelNodeEditTool;
pub use crate::tools::picker::PickerTool;
pub use crate::tools::linedef::LinedefTool;
// pub use crate::tools::mapobjects::MapObjectsTool;
// pub use crate::tools::model::edit::ModelNodeEditTool;
//pub use crate::tools::picker::PickerTool;
pub use crate::tools::render::RenderTool;
pub use crate::tools::resize::ResizeTool;
// pub use crate::tools::resize::ResizeTool;
pub use crate::tools::screen::eraser::ScreenEraserTool;
pub use crate::tools::screen::game::ScreenGameTool;
pub use crate::tools::screen::material::edit::MaterialNodeEditTool;
pub use crate::tools::screen::picker::ScreenPickerTool;
pub use crate::tools::screen::tiledrawer::ScreenTileDrawerTool;
pub use crate::tools::sector::SectorTool;
pub use crate::tools::selection::SelectionTool;
pub use crate::tools::terrain::draw::TerrainDrawTool;
pub use crate::tools::terrain::height::TerrainHeightTool;
pub use crate::tools::terrain::selection::TerrainSelectionTool;
pub use crate::tools::terrain::zoom::TerrainZoomTool;
pub use crate::tools::tiledrawer::TileDrawerTool;
// pub use crate::tools::terrain::draw::TerrainDrawTool;
// pub use crate::tools::terrain::height::TerrainHeightTool;
// pub use crate::tools::terrain::selection::TerrainSelectionTool;
// pub use crate::tools::terrain::zoom::TerrainZoomTool;
pub use crate::tools::tilemap::TilemapTool;
pub use crate::tools::vertex::VertexTool;
pub use crate::tools::zoom::ZoomTool;
pub use crate::tools::*;

Expand Down
Loading

0 comments on commit e06fc48

Please sign in to comment.