【发布时间】:2020-08-26 00:05:42
【问题描述】:
我昨天尝试更新我的 bevy 依赖项,但一切都停止了。我从版本“0.1.2”更改为版本“0.1.3”。当我这样做时,我的项目完全停止了编译。我将依赖项改回“0.1.2”,但没有解决问题。然后我运行了 rustup update 也没有解决问题。所以,最后,我删掉了所有的项目代码,除了:
use bevy:: {
prelude::*,
input::mouse::{MouseButtonInput, MouseMotion},
};
fn main() {
println!("Hello.");
}
我的cargo.toml也很简单,唯一修改的部分如下:
[dependencies]
bevy = "0.1.2"
所以,我得到的错误如下:
error[E0599]: no function or associated item named `perspective_rh` found for struct `glam::f32::mat4::Mat4` in the current scope
--> src\github.com-1ecc6299db9ec823\bevy_render-0.1.3\src\camera\projection.rs:22:15
|
22 | Mat4::perspective_rh(self.fov, self.aspect_ratio, self.near, self.far)
| ^^^^^^^^^^^^^^
| |
| function or associated item not found in `glam::f32::mat4::Mat4`
| help: there is an associated function with a similar name: `perspective_lh`
|
= help: items from traits can only be used if the trait is in scope
= note: the following trait is implemented but not in scope; perhaps add a `use` for it:
`use bevy_math::perspective::PerspectiveRh;`
我应该怎么做才能解决这个问题?
编辑(生锈检查结果):
rustup 检查 stable-x86_64-pc-windows-msvc - 最新:1.45.2 (d3fb005a3 2020-07-31) nightly-x86_64-pc-windows-msvc - 最新: 1.47.0-每晚 (f44c6e4e2 2020-08-24)
【问题讨论】:
-
你可以试试
cargo clean并删除你的Cargo.lock -
Cargo clean 不能单独工作,但删除 Cargo.lock 确实有效。谢谢!