Giter Site home page Giter Site logo

fishfolly's People

Contributors

mrdimas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

fishfolly's Issues

Add water texture to obstacle course map

The obstacle course map looks a little odd since all the platforms are just floating in thin air. A really simple starter task for someone getting acquainted with Fyrox/FishFolly would be to simply add a water texture to this map so that there's a something for players to fall into.

Here's the water texture we're already using in another mini game:

seamless_cartoon_styled_water_texture_by_berserkitty_dcatyft-375w-2x

Compilation errors fyrox::utils::log etc.

I think there were some breaking changes in the engine that broke installation here.
Or did I miss something?

(v1) โžœ  FishFolly git:(main) cargo run --package editor --release
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
   Compiling fyrox-ui v0.22.0 (/Users/artjom/git/Fyrox/fyrox-ui)
   Compiling fyrox v0.31.0 (/Users/artjom/git/Fyrox)
   Compiling fyroxed_base v0.18.0 (/Users/artjom/git/Fyrox/editor)
   Compiling fish_fall v0.1.0 (/Users/artjom/git/FishFolly/game)
error[E0432]: unresolved import `fyrox::utils::log`
  --> game/src/lib.rs:14:12
   |
14 |     utils::log::Log,
   |            ^^^ could not find `log` in `utils`

error[E0432]: unresolved imports `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
  --> game/src/bot.rs:15:22
   |
15 |         node::{Node, TypeUuidProvider},
   |                      ^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
...
20 |         log::Log,
   |         ^^^ could not find `log` in `utils`

error[E0432]: unresolved imports `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
  --> game/src/camera.rs:18:22
   |
18 |         node::{Node, TypeUuidProvider},
   |                      ^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
...
21 |     utils::log::Log,
   |            ^^^ could not find `log` in `utils`

error[E0432]: unresolved imports `fyrox::engine::resource_manager`, `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
  --> game/src/cannon.rs:9:13
   |
9  |     engine::resource_manager::ResourceManager,
   |             ^^^^^^^^^^^^^^^^ could not find `resource_manager` in `engine`
...
12 |     scene::{node::TypeUuidProvider, rigidbody::RigidBody},
   |             ^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
13 |     script::{ScriptContext, ScriptTrait},
14 |     utils::log::Log,
   |            ^^^ could not find `log` in `utils`

error[E0432]: unresolved import `fyrox::scene::node::TypeUuidProvider`
  --> game/src/jumper.rs:12:33
   |
12 |     scene::{collider::Collider, node::TypeUuidProvider, rigidbody::RigidBody},
   |                                 ^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`

error[E0432]: unresolved import `fyrox::scene::node::TypeUuidProvider`
  --> game/src/obstacle.rs:11:13
   |
11 |     scene::{node::TypeUuidProvider, rigidbody::RigidBody},
   |             ^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`

error[E0432]: unresolved imports `fyrox::event::VirtualKeyCode`, `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
  --> game/src/player.rs:13:27
   |
13 |     event::{ElementState, VirtualKeyCode, WindowEvent},
   |                           ^^^^^^^^^^^^^^ no `VirtualKeyCode` in `event`
...
18 |         node::{Node, TypeUuidProvider},
   |                      ^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
...
22 |     utils::log::Log,
   |            ^^^ could not find `log` in `utils`

error[E0432]: unresolved import `fyrox::scene::node::TypeUuidProvider`
  --> game/src/ragdoll/mod.rs:14:22
   |
14 |         node::{Node, TypeUuidProvider},
   |                      ^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`

error[E0432]: unresolved import `fyrox::scene::node::TypeUuidProvider`
  --> game/src/ragdoll/link.rs:11:25
   |
11 |     scene::{node::Node, node::TypeUuidProvider},
   |                         ^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
   |
   = help: consider importing this unresolved item instead:
           crate::ragdoll::TypeUuidProvider

error[E0432]: unresolved import `fyrox::scene::node::TypeUuidProvider`
  --> game/src/respawn.rs:13:5
   |
13 |     scene::node::TypeUuidProvider,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`

error[E0432]: unresolved imports `fyrox::engine::resource_manager`, `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
  --> game/src/start.rs:6:13
   |
6  |     engine::resource_manager::ResourceManager,
   |             ^^^^^^^^^^^^^^^^ could not find `resource_manager` in `engine`
...
9  |     scene::node::TypeUuidProvider,
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
10 |     script::{ScriptContext, ScriptDeinitContext, ScriptTrait},
11 |     utils::log::Log,
   |            ^^^ could not find `log` in `utils`

error[E0432]: unresolved imports `fyrox::scene::node::TypeUuidProvider`, `fyrox::utils::log`
 --> game/src/target.rs:7:5
  |
7 |     scene::node::TypeUuidProvider,
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `TypeUuidProvider` in `scene::node`
8 |     script::{ScriptContext, ScriptDeinitContext, ScriptTrait},
9 |     utils::log::Log,
  |            ^^^ could not find `log` in `utils`

error[E0407]: method `restore_resources` is not a member of trait `ScriptTrait`
  --> game/src/cannon.rs:80:5
   |
80 | /     fn restore_resources(&mut self, resource_manager: ResourceManager) {
81 | |         resource_manager
82 | |             .state()
83 | |             .containers_mut()
84 | |             .models
85 | |             .try_restore_optional_resource(&mut self.ball_prefab);
86 | |     }
   | |_____^ not a member of trait `ScriptTrait`

error[E0407]: method `restore_resources` is not a member of trait `ScriptTrait`
  --> game/src/start.rs:58:5
   |
58 | /     fn restore_resources(&mut self, resource_manager: ResourceManager) {
59 | |         resource_manager
60 | |             .state()
61 | |             .containers_mut()
62 | |             .models
63 | |             .try_restore_optional_resource(&mut self.model);
64 | |     }
   | |_____^ not a member of trait `ScriptTrait`

Some errors have detailed explanations: E0407, E0432.
For more information about an error, try `rustc --explain E0407`.
error: could not compile `fish_fall` (lib) due to 14 previous errors
warning: build failed, waiting for other jobs to finish...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.