Loading...
Logo
Processing Forum
adamtoth's Profile
4 Posts
11 Responses
1 Followers

Activity Trend

Last 30 days
Show:
Private Message
    if i press the power button the onPause() function should run but when i unlock the screen the sketch quit and if i try to resume it starts from the begining.
    Are there any solution to this problem?
    My question is that how can i read from res/drawable/ folder "whatever.png" file(s)?
    So i would like to do some screen and resolution optimization (for 320x240 resolution a smaller pictures and for hdpi some bigger) but in the sketch i am able to read .png from data folder that i created, and its name changes to 'assets' when i export android project from processing.
    Are there any solution for this or i am able to read pictures from the assets (/data) folder only?
    i have a problem with this code, if i run it with P2D or P3D everything cool but when i test it with OPENGL the rectangle doesn't appear. could somebody please help?

    import processing.opengl.*;

    1. import processing.opengl.*;

    2. void setup(){
    3.   size(400,400,OPENGL);
    4.   smooth();
    5.   background(255);
    6. }

    7. void draw(){
    8.   fill(100);
    9.   ellipseMode(CENTER);
    10.   ellipse(200,200,100,100);
    11.   filter(BLUR, 6);
    12.   fill(0);
    13.   rect(300,300,60,60);
    14.   noLoop();
    15. }