Search found 135 matches

by Jibus
Tue Dec 27, 2016 8:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding items to the scene
Replies: 1
Views: 256

Adding items to the scene

I would like to add an item (png image) to the actual scene that the user can take. If the user touch it, he earns points.

I have some idea to make this work, but if possible i would like an exemple.

Thanks
by Jibus
Wed Nov 09, 2016 10:54 am
Forum: Ren'Py Questions and Announcements
Topic: Build Renios manually
Replies: 5
Views: 865

Re: Build Renios manually

Sorry to re-bump this. Is this possible to just build SDL2 (for instance, comment all build in build_all.sh except SDL2) ?
by Jibus
Sun Oct 23, 2016 12:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Build Renios manually
Replies: 5
Views: 865

Re: Build Renios manually

Thank you, ccache was missing on my system.

At the end i have several libSDL2.a; one for each architecture (arm64, armv7 etc..). How do you place theses files in the xcode project ?
by Jibus
Sat Oct 22, 2016 12:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Build Renios manually
Replies: 5
Views: 865

Build Renios manually

I would like to make some modifications on the main AppDelegate file which is from SDL. For testing purpose i tryed to build Renios manually using ./scripts/build.sh all command. It compiles fine until i got this error: + try ./configure --enable-ipv6 'CC=ccache clang -Qunused-arguments -fcolor-diag...
by Jibus
Wed Oct 19, 2016 3:51 am
Forum: Ren'Py Questions and Announcements
Topic: Mobile: perfom operations when the app lost focus [SOLVED]
Replies: 4
Views: 683

Re: Mobile: perfom operations when the app lost focus

Ok, thank you ! I am not a huge fan of changing core file but I will have a look !
by Jibus
Tue Oct 18, 2016 3:56 am
Forum: Ren'Py Questions and Announcements
Topic: Mobile: perfom operations when the app lost focus [SOLVED]
Replies: 4
Views: 683

Re: Mobile: perfom operations when the app lost focus

I would like to connect to a server in order to update some data.
by Jibus
Mon Oct 17, 2016 11:44 am
Forum: Ren'Py Questions and Announcements
Topic: Mobile: perfom operations when the app lost focus [SOLVED]
Replies: 4
Views: 683

Mobile: perfom operations when the app lost focus [SOLVED]

Is it possible de perfom operations when the app lost focus on mobile phone ?
by Jibus
Thu Oct 13, 2016 4:42 pm
Forum: Ren'Py Questions and Announcements
Topic: iOS : launchimage only displayed a few secunds
Replies: 14
Views: 1510

Re: iOS : launchimage only displayed a few secunds

I tried to remove the call to pygame but the result stays the same. Then i build the question in xcode without making any modification (latest version of xcode, iphone 5 simulator with iOS 10). It has the same problem : we see the launchscreen about 0.5/1 secund then the game load (black screen) the...
by Jibus
Thu Oct 13, 2016 11:12 am
Forum: Ren'Py Questions and Announcements
Topic: iOS : launchimage only displayed a few secunds
Replies: 14
Views: 1510

Re: iOS : launchimage only displayed a few secunds

Something like this ?

Code: Select all

init python:
    import pygame
    info = pygame.display.init()
    info = pygame.display.Info()
by Jibus
Thu Oct 13, 2016 9:54 am
Forum: Ren'Py Questions and Announcements
Topic: iOS : launchimage only displayed a few secunds
Replies: 14
Views: 1510

Re: iOS : launchimage only displayed a few secunds

Bump :) I have still the issue on the latest version of Renpy and Renios. The game is in landscape mode. When I launched it, the splashscreen (set in xcode assets) only appears 1 or 2 secunds, then a black a screen is show during the loading of the game (3-4 seconds) then the menu is displayed. I sa...
by Jibus
Tue Oct 11, 2016 12:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Communicating with Cleverbot through Renpy
Replies: 2
Views: 743

Re: Communicating with Cleverbot through Renpy

Indeed, urlib2 does not support https at this time (see viewtopic.php?f=8&t=40178). But you can try with the Requests library
by Jibus
Tue Oct 11, 2016 11:43 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]iOS Hide Status Bar
Replies: 4
Views: 1238

Re: iOS Hide Status Bar

Set the app in full screen in xcode.
by Jibus
Tue Oct 11, 2016 11:42 am
Forum: Ren'Py Questions and Announcements
Topic: Using iap helper in a python function [SOLVED]
Replies: 2
Views: 522

Using iap helper in a python function [SOLVED]

I was wondering if we can use the iap function helper (iap.has_purchased() for instance) in a python function.

For example :

init -1 python:
def my_function(iap):
if iap.has_purchased(iap):
#do something