• Dear Cerberus X User!

    As we prepare to transition the forum ownership from Mike to Phil (TripleHead GmbH), we need your explicit consent to transfer your user data in accordance with our amended Terms and Rules in order to be compliant with data protection laws.

    Important: If you accept the amended Terms and Rules, you agree to the transfer of your user data to the future forum owner!

    Please read the new Terms and Rules below, check the box to agree, and click "Accept" to continue enjoying your Cerberus X Forum experience. The deadline for consent is April 5, 2024.

    Do not accept the amended Terms and Rules if you do not wish your personal data to be transferred to the future forum owner!

    Accepting ensures:

    - Continued access to your account with a short break for the actual transfer.

    - Retention of your data under the same terms.

    Without consent:

    - You don't have further access to your forum user account.

    - Your account and personal data will be deleted after April 5, 2024.

    - Public posts remain, but usernames indicating real identity will be anonymized. If you disagree with a fictitious name you have the option to contact us so we can find a name that is acceptable to you.

    We hope to keep you in our community and see you on the forum soon!

    All the best

    Your Cerberus X Team

MiniB3D on Android

SLotman

Active member
3rd Party Module Dev
Tutorial Author
Joined
Jul 3, 2017
Messages
261
I was experimenting with miniB3D on Android - and everything seemed really fine... until I got a warning on screen about something.

Obviously the game was suspended, and when it returned, the screen was blank. The game was still running on the background (I could hear sounds), but nothing shows on screen.

In the logs, I could find this: E/ViewRootImpl( 762): sendUserActionEvent() mView == null - don't know if its related.

Have anyone found similar issue? If so, how to fix this?
 
Found a workaround: copied this from the source into "OnResume":

Code:
        Graphics3DInit ()
        ReloadAllSurfaces ()
        ReloadAllTextures ()
        TShader.ResetDefaultShader()

And now it works as it should :)
 
Great find. Where does someone find a current version of MiniB3d?
 
@SLotman , Upload a working version to here please
 
thank you @SLotman

Html run:
Got error "Native OS Module not implemented"
 
Last edited:
Found a workaround: copied this from the source into "OnResume":

Code:
        Graphics3DInit ()
        ReloadAllSurfaces ()
        ReloadAllTextures ()
        TShader.ResetDefaultShader()

And now it works as it should :)
Thanks, but adding this directly inside OnResume didn't work completely for me. The lighting was broken on one Android device and on the other device it would crash.

Looking at the MiniB3D's source code for app.cxs they call those functions inside OnRender once after OnResume was triggered.

Code:
    Field _was_suspended:Bool = False

    Method OnRender()
        If _was_suspended
            #If TARGET="android" Or TARGET="ios" Or TARGET="winrt"
                Graphics3DInit ()
                ReloadAllSurfaces ()
                ReloadAllTextures ()
                TShader.ResetDefaultShader()
            #Endif
            _was_suspended = False
        End
        'Do your render code...
    End

    Method OnResume:Int()
        _was_suspended = True
        Return 0
    End

Tested by modifying animation_test.cxs that comes with MiniB3D.
 
Back
Top Bottom