-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FAQ] Some questions regarding this project #473
Comments
Hey @Raj2032, your question is referenced to #475. No it's not retained nor immediate. Since Please let us know about your expectations. Are you able to pick up a specific part, issue, describe ideas, document available corner cases? |
@rzerres Hi thanks for your response.
Actually I have some questions about this, does it lock you into some kind of framework (when coding), the way how Bevy does it with their framework? For example if I were to use use std::path::PathBuf;
let mut path = PathBuf::new();
path.push(r"C:\");
path.push("windows");
path.push("system32"); See how this doesn't lock you into some kind of framework? Whereas with Bevy: use bevy::prelude::*;
fn main() {
App::new()
.add_system(hello_world_system)
.run();
}
fn hello_world_system() {
println!("hello world");
} See how this does lock me into a framework? Is this the same case with orbtk? |
@Raj2032 i hope i got your question right. have a look into
where If I'm don't miss the tartet, this hopefully explains why you are free to use things it as yo expect without locking you the way |
@rzerres I see thanks mate :) |
Hey I have some questions regarding this project:
Is it retained or immediate or is it both?
Does it support Android at this stage?
The text was updated successfully, but these errors were encountered: