Skip Navigation

User banner
Posts
1
Comments
22
Joined
4 yr. ago

  • I use LocalSend, I wouldn’t call it “sketchy” although it is a “file uploader” app.

  • What’s wrong with .ml posts?

  • If a so called “social contract” said you can’t shit in the toilet, what would you do liberal? Would you shit in the sink if the “contract” told you to?

  • There’s already beans in this so probably more beans :)

  • This is a good answer. Too bad people are downvoting it for the reasons mentioned.

  • Love the vibe + colors. Not 100% sure what’s going on but it looks painful

  • I was thinking something in the cover-up team direction

  • Detective game where you have to find plausible explenations for paranormal events

  • Yummy mossy mommy

  • Rule

    Jump
  • I miss her :(

  • Now I need another wholesome one to cancel out this one

  • Palestine @lemmy.ml

    Answering the Most Googled Questions: Palestine 🇵🇸 vs Israel 🇮🇱

    O.O

    Jump
  • Real

  • Based

  • ok so I'm out of the bath.

     rust
        
    #[derive(SystemParam)]
    pub struct Sprite3dParams<'w, 's> {
        pub meshes    : ResMut<'w, Assets<Mesh>>,
        pub materials : ResMut<'w, Assets<StandardMaterial>>,
        pub images    : ResMut<'w, Assets<Image>>,
        pub atlases   : ResMut<'w, Assets<TextureAtlas>>,
        pub sr        : ResMut<'w, Sprite3dRes>,
        #[system_param(ignore)]
        marker: PhantomData<&'s usize>,
    }
    
      

    It seems like Sprite3dParams is already accessing Assets<TextureAtlas> which is why you get the the error. So you need to either remove texture_atlases or sprite_params. in your system.

    have you looked at this example? I won't be much help sorry :(