2D graphics do not work on Android?
I made a simple 2D game. It works well in a browser on a desktop with a fps of about 60 Hz. On Android, the FPS catastrophically falls to 4-5 Hz.
With this, nothing can be done?
Search found 5 matches
- Sun Mar 04, 2018 4:28 am
- Forum: Coding Questions
- Topic: 2D & Android
- Replies: 0
- Views: 2862
- Thu Feb 15, 2018 4:44 pm
- Forum: Coding Questions
- Topic: Question about border of screen
- Replies: 2
- Views: 2887
Re: Question about border of screen
It's just a 1 pixel borderaround the perimeter of the screen. It is when using OpenScreen() and for OpenWindowedScreen().too.
This can be seen in the following example, although the color of the border is different than on the tablet with Android. If you move focus to another object, the border ...
This can be seen in the following example, although the color of the border is different than on the tablet with Android. If you move focus to another object, the border ...
- Sun Feb 11, 2018 12:28 pm
- Forum: Coding Questions
- Topic: Loading a picure on the fly
- Replies: 4
- Views: 4308
Re: Loading a picure on the fly
Use timer.
- Sun Feb 11, 2018 10:52 am
- Forum: Coding Questions
- Topic: Loading a picure on the fly
- Replies: 4
- Views: 4308
Re: Loading a picure on the fly
Hello Stefan, something like this:
Procedure Loaded(Type, Filename$, ObjectId)
Debug "Loading image: " + Filename$
EndProcedure
Procedure LoadingError(Type, Filename$, ObjectId)
Debug Filename$ + ": loading error"
EndProcedure
BindEvent(#PB_Event_Loading, @Loaded())
BindEvent(#PB_Event ...
Procedure Loaded(Type, Filename$, ObjectId)
Debug "Loading image: " + Filename$
EndProcedure
Procedure LoadingError(Type, Filename$, ObjectId)
Debug Filename$ + ": loading error"
EndProcedure
BindEvent(#PB_Event_Loading, @Loaded())
BindEvent(#PB_Event ...
- Wed Feb 07, 2018 10:56 am
- Forum: Coding Questions
- Topic: Question about border of screen
- Replies: 2
- Views: 2887
Question about border of screen
How to remouving border of active screen?
I'm trying to write a full-screen application for the Android tablet, but when I launch it a bright orange border appears, which really hinders.
I'm using OpenScreen ()
I'm trying to write a full-screen application for the Android tablet, but when I launch it a bright orange border appears, which really hinders.
I'm using OpenScreen ()