fix: end offset
This commit is contained in:
724
Cargo.lock
generated
724
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -9,6 +9,7 @@ repository.workspace = true
|
||||
readme.workspace = true
|
||||
keywords.workspace = true
|
||||
categories.workspace = true
|
||||
exclude = ["assets/"]
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
|
||||
@@ -52,7 +52,6 @@ impl ImplApp for BrowserProcessAppBuilder {
|
||||
let Some(command_line) = command_line else {
|
||||
return;
|
||||
};
|
||||
//TODO: フラグで切り替えるようにする
|
||||
command_line.append_switch(Some(&"use-mock-keychain".into()));
|
||||
#[cfg(feature = "debug")]
|
||||
{
|
||||
|
||||
@@ -15,7 +15,7 @@ impl DataResponser {
|
||||
pub fn prepare(&mut self, data: Vec<u8>, range: &Option<(usize, Option<usize>)>) {
|
||||
if let Some((start, end)) = range {
|
||||
self.offset = *start;
|
||||
self.end_offset = end.unwrap_or(data.len()-1);
|
||||
self.end_offset = end.unwrap_or(data.len());
|
||||
self.data = data;
|
||||
} else {
|
||||
self.offset = 0;
|
||||
@@ -40,7 +40,7 @@ impl DataResponser {
|
||||
return None;
|
||||
}
|
||||
|
||||
let slice = &self.data[start..=end.min(self.data.len()-1)];
|
||||
let slice = &self.data[start..end.min(self.data.len())];
|
||||
self.offset += slice.len();
|
||||
Some(slice)
|
||||
}
|
||||
|
||||
@@ -8,7 +8,6 @@ repository.workspace = true
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
bevy = { workspace = true, features = ["file_watcher"]}
|
||||
bevy_remote = { workspace = true }
|
||||
bevy = { workspace = true, default-features = true, features = ["file_watcher"]}
|
||||
bevy_cef = { workspace = true, features = ["debug"] }
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ fn main() {
|
||||
spawn_camera,
|
||||
spawn_directional_light,
|
||||
spawn_github_webview,
|
||||
spawn_google_search_webview,
|
||||
spawn_github_io_webview,
|
||||
spawn_ground,
|
||||
enable_ime,
|
||||
),
|
||||
@@ -64,13 +64,13 @@ fn spawn_github_webview(
|
||||
));
|
||||
}
|
||||
|
||||
fn spawn_google_search_webview(
|
||||
fn spawn_github_io_webview(
|
||||
mut commands: Commands,
|
||||
mut meshes: ResMut<Assets<Mesh>>,
|
||||
mut materials: ResMut<Assets<WebviewExtendStandardMaterial>>,
|
||||
) {
|
||||
commands.spawn((
|
||||
CefWebviewUri::new("https://not-elm.github.io/bevy_cef/"),
|
||||
CefWebviewUri::new("https://not-elm.github.io/bevy_cef"),
|
||||
WebviewSize(Vec2::splat(800.0)),
|
||||
Mesh3d(meshes.add(Plane3d::new(Vec3::Z, Vec2::ONE))),
|
||||
MeshMaterial3d(materials.add(WebviewExtendStandardMaterial::default())),
|
||||
|
||||
Reference in New Issue
Block a user