Skip to content
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

Application crash cases #204

Open
z80 opened this issue May 6, 2022 · 0 comments
Open

Application crash cases #204

z80 opened this issue May 6, 2022 · 0 comments

Comments

@z80
Copy link

z80 commented May 6, 2022

  1. Simple scene tree traversal (see below) called for currently loaded scene which contains XR nodes is guaranteed to crash the application with 100% probability. Application does not survive a single call of this function. However, if XR nodes are removed from the scene, application never crashes.
func _traverse_tree( node: Node ret: Array ):
    ret.push_back( node )
    var qty: int = node.get_child_count()
    for i in range(qty):
        var ch: Node = node.get_child( i )
        _traverse_tree( ch, ret )
  1. With no headset connected application crashes with some chance. On average it crashes every second launch but sometimes many times in a row. So far observed 8 consecutive crashes followed by 1 successful launch.

  2. With headset and controllers connected application also crashes with some chance which depends on scene complexity.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant