张林伟

Results 43 issues of 张林伟

# Objective - fixes https://github.com/bevyengine/bevy/issues/6577 ## Solution - simply add `const` to `primary()`.

A-Windowing
C-Code-Quality
S-Ready-For-Final-Review

## Bevy version 0.10 ## \[Optional\] Relevant system information OS: Win10 & MacOS ## What you did When enable cursor hittest in `window_fallthrough` example, - On Win10, `window.cursor_position()` will always...

C-Bug
S-Needs-Triage

## What problem does this solve or what need does it fill? as title.

C-Enhancement
A-Rendering
A-UI

# Objective - Let user can use pattern like below when creating window ``` ... cursor: Cursor { hit_test: true, ..default() }, ... ``` - make hit_test default false

C-Bug
A-Windowing

## What problem does this solve or what need does it fill? Support code like below ``` .add_systems( ( a_system, b_system, ) .in_base_set(CoreSet::PostUpdate) .run_if(xxx) ) ```

A-ECS
C-Usability
D-Complex

# Objective - Set cursor hittest during window creation, not need to set hittest in a system.

C-Bug
A-Windowing
S-Ready-For-Final-Review

# Objective - Fixes https://github.com/bevyengine/bevy/issues/7990. ## Solution - Register needed types, verified pasted code in issue works. Do I need to register more `Option` types?

A-Windowing
C-Usability
A-Reflection
S-Controversial