Ashley's Recent Forum Activity

  • Sorry, I've been lazy... I'll try to release it tonight.

    Only rendering functions have changed, but a few other definitions and headers have changed. You will need to make changes to stdafx.h (if you haven't changed it you can paste in the new one from the .99 SDK), and any changed members have 'deprecated_' before them. For example, the old colour filter was a D3DCOLOR and has been replaced. The old member is now 'deprecated_filter' and is ignored; it is now a cr::color located at info.pInfo->filter.

  • It's not currently possible; the first element is always default.

  • Can you post it as a .cap on the tracker so it's not forgotten about?

  • It's not sound related. It means your graphics card has run out of memory. I'm guessing you've got a low-end 32mb or 64mb model if it runs out with 22mb usage. If it can't cope, make sure you're not creating too many canvas objects, reduce the window size of the game, or just buy a decent graphics card

  • You don't need to use activation or deactivation. Groups can be placed as a subevent to another event, so if the group is a subevent to an 'every X milliseconds' event, it will run the events contained within every X milliseconds.

  • It never shows up for me except the first time I log in from a particular computer, and I'm not sure how to configure it either...

  • error checking++

  • You can't - Windows should use the highest refresh rate that monitor supports at that resolution, or at least the desktop refresh rate. I think a lot of monitors only support high refresh rates at their intended resolutions, so it physically can't display that resolution at 85 Hz - so you might be stuck at 60 Hz for 640x480.

  • That paragraph sounds more like a bug report (not all groups enable/disable) than a feature request. Is it on the tracker?

  • Does this happen in the latest testing build, 0.99.3?

  • The correct pointer syntax is CRunObject*, by the way

    First, any action or condition that does any picking at all must specify the SOL_MODIFIER flag (otherwise behavior is undefined, and the app will probably crash). If the pointer is called 'object' and the pointer to its type (CRunObjType*) is called 'type', then the following does:

    pRuntime->SelectAll(type);
    // 'type' is now put in to 'all selected' mode, as if it hasn't yet been referenced by any conditions - eg. in an Always event[/code:34maw5si]
    
    [code:34maw5si]pRuntime->SelectAll(type);
    pRuntime->Select(object);
    // 'object' is now the only object picked[/code:34maw5si]
    
    [code:34maw5si]pRuntime->Select(object);
    // Without a preceeding 'selectall', this adds 'object' to the currently picked objects
    // It *must not* already be picked - if you're not sure call IsSelected() first to check[/code:34maw5si]
    
    [code:34maw5si]pRuntime->SelectAll(type);
    pRuntime->Select(object1);
    pRuntime->Select(object2);
    pRuntime->Select(object3);
    // The three objects 'object1', 'object2' and 'object3' are now selected
    // Note you cannot call Select() on the same object twice - if you think
    // any of those pointers might point to the same object, you must check it
    // isn't selected first via pRuntime->IsSelected(object)[/code:34maw5si]
    
    The code for running actions, subevents, suppressing elses etc is purely for looping conditions like for-each and repeat - they're a bit more complicated, but for other conditions, you don't need to worry about those functions at all.
  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Yeah, please don't bump old threads

Ashley's avatar

Ashley

Early Adopter

Member since 21 May, 2007

Twitter
Ashley has 1,538,960 followers

Connect with Ashley

Trophy Case

  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • Forum Mega Brain Made 20,000 posts in the forums
  • x109
    Coach One of your tutorials has over 1,000 readers
  • x69
    Educator One of your tutorials has over 10,000 readers
  • x3
    Teacher One of your tutorials has over 100,000 readers
  • Sensei One of your tutorials has over 1,000,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • RTFM Read the fabulous manual
  • x38
    Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

32/44
How to earn trophies

Blogs