Tiling and collision methods for this app

I plan on making a game where the player travels down though a level. I have created basic player/objects collision games using AS2 & Mclips for browser/PC and some basic AS3 apps also, but I want to focus on making this one to run well/fast on iOS and Android via flash/AIR.
The goal will be for the player to avoid colliding with rock/tiles.  There will not be too many enemies to track but a few powerups may be on the rock edges to pickup.
Can someone give me any suggestions/links for current Tiling and Collision methods for this environment? Should I use starling?

Thanks Glad, I hear that a pixel perfect collision method like bitmapdata hittest can be a tremendous overhead in CPU time, but I guess I will have to try it and see.

Similar Messages

  • App testing phase: Push notifications are not getting delivered to certain devices (iphone 4S/ios7.0.4 and ios7.0.3 - Push never worked for these two devices for this app). Received OK responses from Apple PUSH services, but notifications not delivered

    We are testing an app at work and Push notifications are not getting delivered to certain devices (iphone 4S/ios7.0.4 and ios7.0.3 - Push never worked for these two devices for this app). Received OK responses from Apple PUSH services, but notifications not delivered to these tow devices.
    PUSH notification were delivered to some of the other iOS devices: (iPhone5 / iOS 6.1.4 and iPhone5 / iOS 7.0.3)

    Sounds like you have a battry issue but don't want to believe it.
    If a car was running fine on one tank of gas, then you filled it up with another tank of gas and it began to run funny, one might suspect that tank of gas. But let's just say coincidence blew a valve-- would you think the new tank of gas was the culprit?
    BUT WAIT!! It just might have been! The gas could have been of higher octane and put more more strain on the valves; you know, like going from 87 octane (OS6) to 93 octane (OS7) and showing you the engine was on the edge of compromise.
    Sometimes you have to go with common sense. If everything else is ruled out, it must be the battery. And if it runs fine one moment in OS6 but immediately ***** in OS7, I'd believe my battery was suspect-- though comfy-- in OS6 but the OS7 showed its true power.
    Moreover, if you had the answer-- or didn't want to believe someone's more competent advice-- why did you even call?  You've already shown that you don't know much when you asked if you could go backwards after setting up the new OS as a new phone.
    Additonally, if you're such the know-it-all, but yourself the $29 battery and put it in yourself. It's a piece of cake.
    <Edited By Host>

  • TS1702 I have followed all instructions through iTunes to cancel Jillian Michaels Slimdown app on iPhone4 and impossible.  Do I need to cancel my credit card or change number on credit card to avoid being charged weekly for this app?

    I have followed all instructions in iTunes to cancel Jillian Michaels Slimdown app on iPhone 4.  I downloaded the app via my iPhone 4.  Will I have to call and cancel credit card or change the number on my credit card to avoid being charged for this app weekly?  Can I just delete app and my credit card will not be charged?  Please help!

    I have followed all instructions in iTunes to cancel Jillian Michaels Slimdown app on iPhone 4.  I downloaded the app via my iPhone 4.  Will I have to call and cancel credit card or change the number on my credit card to avoid being charged for this app weekly?  Can I just delete app and my credit card will not be charged?  Please help!

  • Exception in Payment Proposal - Pmnt methods for this run are not specified

    Dear all,
    I want to ask if it is possible to run a payment proposal for AP transactions together with AR. The AR line items are used for clearing. Actually, this is the first time we execute proposal run which contains AP and AR respectively. And during the proposal, AR line item is an exception - 'Pmnt methods for this run are not specified in the master record or in item'. We already checked the master record, and there is a payment method. However, it was not captured during the payment proposal. Does it have something to do with the Document Type?
    Thank you once again for all your usual support.
    Regards,
    April

    To: Karthik, pushkaraj, JeCcas_DJ
    Thank you very much for your responses.
    I've checked already FBZP and Customer Master Record, payment methods were defined. Also, during the payment run, all line items have the same payment method, but only the AR transaction was not accepted.
    I think the problem is the same as what pushkaraj mentioned. We have payment method 'D' defined only for outgoing payments and not for incoming payments. I guess that is the problem.
    By the way, can I create another entry 'D' for payment method-incoming payments? Would there be conflict if I assigned same ID?
    Regards and thank you once again...
    April

  • Can we hav call transaction and session method for an application

    can we hav call transaction and session method for an application ?if yes how?

    Hi ,
    You can.  If Call Transaction fails, a batch input session can be created.
    Check this example-
    Call the transaction. Messages from Call Transaction are stored in the
    internal table messtab 
      CALL TRANSACTION 'LT01' USING bdc_tab MODE 'N' UPDATE 'S'
          MESSAGES INTO messtab.
      IF sy-subrc = 0.                                                 
    Call transaction successfull,  get the number of the Transfer Order that
    was created                                                        
        LOOP AT messtab.                                               
          IF messtab-dynumb = '0104' AND messtab-msgnr = '016'.        
            w_transportorderno = messtab-msgv1.                        
          ENDIF.                                                       
        ENDLOOP.
      ELSE.
    Call transaction failed, create a batch input session instead.
        PERFORM open_group.                        
        PERFORM bdc_insert USING 'LT01'.           
        PERFORM close_group.                       
    ENDIF.
    Regards,
    Sookshma

  • How do I find out my serial number on my mac computer for this app

    How do I find out my serial number on my computer for this app and eventhough I had the app for awhile how do I register it?

    Find your serial number quickly

  • Design Patterns, best approach for this app

    Hi all,
    i am starting with design patterns, and i would like to hear your opinion on what would be the best approach for this app. 
    this is basically an app for data monitoring, analysis and logging (voltage, temperature & vibration)
    i am using 3 devices for N channels (NI 9211A, NI 9215A, NI PXI 4472) all running at different rates. asynchronous.
    and signals are being processed and monitored for logging at a rate specified by the user and in realtime also. 
    individual devices can be initialized or stopped at any time
    basically i'm using 5 loops.
    *1.- GUI: Stop App, Reload Plot Names  (Event handling)
    *2.- Chart & Log:  Monitors Data and Start/Stop log data at a specified time in the GUI (State Machine)
    *3.- Temperature DAQ monitoring @ 3 S/s  (State Machine)   NI 9211A
    *4.- Voltage DAQ monitoring and scaling @ 1K kS/s (State Machine) NI 9215A
    *5.- Vibration DAQ monitoring and Analysis @ 25.6 kS/s (State Machine) NI PXI 4472
    i have attached the files for review, thanks in advance for taking the time.
    Attachments:
    V-T-G Monitor_Logger.llb ‏355 KB

    mundo wrote:
    thanks Will for your response,
    so, basically i could apply a producer/consummer architecture for just the Vibration analysis loop? or all data being collected by the Monitor/Logger loop?
    is it ok having individual loops for every DAQ device as is shown?
    thanks.
    You could use the producer/consumer architecture to split the areas where you are doing both the data collection and teh analysis in the same state machine. If one of these processes is not time critical or the data rate is slow enough you could leave it in a single state machine. I admit that I didn't look through your code but based purely on the descriptions above I would imagine that you could change the three collection state machines to use a producer/consumer architecture. I would leave your UI processing in its own loop as well as the logging process. If this logging is time critical you may want to split that as well.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • I paid for this app on The Ipad. Now its free??? I want my money back!!!

    I want my money bak!!! I paid for this app already, now it is feee??? Friggin joke!!!!!! Money back please!!! As now i have to do in app purchases again!!!!!!!!

    I want my money bak!!! I paid for this app already, now it is feee???
    If you bought GargeBand already, you bought a different program, GarageBand 1.3 and not GarageBand 2.0. This is not an update, it is an upgrade, a completely new version for compatibility with the new MacOS Mavericks and GarageBand on the Mac. I'd be grateful, that this time we do not have to buy all new apps  again, only the additional content. Usually the upgrades to completely new versions have been paid upgrades.

  • Update unavailable for this app for app not installed

    I have a machine on which I keep seeing Angry Bird update
    I never installed it. Or if someone in my family installed it without my knowledge then it is a different case altogether.
    But at the moment it is not installed but I keep getting update of that. And when I click update it says Update Unavailable for this app
    How can I remove this Update Message altogether from my App Store

    Click here and ask Apple for assistance.
    (115687)

  • As a Creative Cloud Subscriber do I have to pay for this app?

    Not sure if this is the right place, but I need to know if I need to pay for this app or if its provided as part of the CC suite

    To add to what dicemaster said, you can use PS Touch to connect to Creative Cloud to import (or export) assets that are compatible (like PSDs, PSDXs and RAWs).
    I could picture PS Touch as being part of Creative Cloud but Adobe would have to build it from the ground up for that purpose, meaning it would have to be initially free due to Google Play and App Store's closed marketplaces. For example, Autodesk lets users download the Sketchbook app for free but you don't get the bells and whistles unless you log in with your Autodesk sub (within the app itself).

  • I got my i phone4s few days back and i created an apple id with a credit card and when i go to the appstore to purchase apps,all have and message stating that "this app is no longer availabe"..how do i fix this issue?im from singapore by the way

    i got my i phone4s few days back and i created an apple id with a credit card and when i go to the appstore to purchase apps,all have and message stating that "this app is no longer available"..how do i fix this issue?im from singapore by the way

    If it is longer available then you can't get the app on your phone.

  • How do i get a list of all Roles defubed under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?

     

    Sorry for the typographical mistake.
    Please read the question as:"How do i get a list of all Roles defined under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?"

  • I teach neuroanatomy and am looking for an app that would allow me to use a stylus on the iPad to label a wordforMac or powerpoint document.  Any suggestions?

    Help needed:  I teach neuroanatomy and am looking for an app that would allow me to use a stylus on the iPad screen to label diagrams in wordforMac or powerpoint format. Any suggestions?

    I don't believe it will open a Word document, but Writepad allows for handwritten conversion of notes to text and then to email. Might help you some of the way...

  • How to install the EUL5 Business Area and seeded reports for Ora Apps 11i

    Hi All,
    We have to install the EUL5 Business Area and seeded reports for Ora Apps 11i.
    I think there are scripts which need to be executed to create the BA and the Disco seeded reports. I am kind of confused about the whole think. Any pointers as to where to look foe the scripts would be really appreciated.
    I am using disco version 10.1.2.48.18.
    Thanks.

    Hi,
    You need to work though Metalink Note 313418.1.
    Rod West

  • I have a question : Someone want sell me Creative Suite 6 MAster Collection, He is gave me the key and want me to fill in the transfer document from adobe? If I accept and pay him for this do I be eligble to use this software in company ? He is offering m

    I have a question : Someone want sell me Creative Suite 6 MAster Collection, He is gave me the key and want me to fill in the transfer document from adobe? If I accept and pay him for this do I be eligble to use this software in company ? He is offering me full version of the product. How Can I check it ?

    There is no reason to do that. You can buy a legitimate copy of the product from Adobe.
    If the price is too good to be true, it's too good to be true. Caveat emptor.

Maybe you are looking for

  • Problem with Weblogic Commerce Server 3.1

    I am currently evaluating the Weblogic Commerce server 3.1 product. I have installed the Weblogic server 5.1 and the service pack 6 along with the Commerce Server. I can get into the WLCS Commerce Server Templates and can navigate the store categorie

  • Trial Balance between two effective_date

    HI, i am new to OBIEE. i have to create Trial Balance between two effective_date. filter should be: from effective_date: date1, to effective_date: date2. report should show following columns: company (group by this column), sum(accounted_cr) between

  • Can't create a page group

    Hi: i'm having troubles with a portlet wich is supossed to have a "create page group" functionality, but it really doesn't have it. i've seen documentation on Oracle about a portlet called "page groups" which gives the possiblity to build page groups

  • Problem upgrading to 3.2

    We currently have a high availability (mysql cluster) setup with one primary vda host and two secondaries... all running 3.1 for the moment. I went to upgrade these servers to 3.2 and so I started by running "vda-preserve" on all 3 hosts in the order

  • Making Custom background Folders

    Hello, thank you for reading this. I made some files for work and I want to present them professionally, so I want a custom background in it. The problem is, Im using Leopard so I cant just Command-J and choose picture. I obviously need to run some t