Ashley's Forum Posts

  • OK, let us know if you get your PSP

    How long do you have to spend earning your 4 points a day? What do you actually do to earn them? Because I can still pay with my time...

  • I'm wondering how a photo of cardboard boxes constitutes proof that they will be sent out to anyone, or that they even contain anything worthwhile, or who these people who have already received things are, and whether or not they are hired to stir up the hype, or why a company feels it necessary to prove their legitimacy by publishing photos of warehouses, or how long they will stay in business...

    Basically, I've seen these types of schemes before and they're never as good as they seem, remember the "free ipod" craze? It's just new ways to make people look at marketing without thinking they're looking at marketing.

    Unless I am over-cynical and everyone's gonna be getting free PSPs for watching YouTube while I sit here and complain

  • You can just use a screen recording app - FRAPS is a good one designed for DirectX applications.

  • Look at the definitions in the header file. It's an __int64, so in theory it can hold two pointers in a 32-bit system, but you really shouldn't do that. Pointers have no meaning whatsoever in events and therefore should not be involved in the event engine at all.

  • [quote:1fon6iok]Where to start?

    by Glamthaus on 11 Oct 2008, 13:16

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • [quote:k566pdl3]Lockerz is the place to go to buy the coolest stuff at the lowest prices, watch exclusive video, discover new music, play the hottest games ... Redeem PTZ at the PTZ Place for incredible prizes, great products and dream experiences ... a Lockerz community of cool, stylish, cutting-edge people who love to buy great brands

    Sounds dubious to me. Sounds like "earn fake money for looking at adverts all day and convincing your friends to do the same". The invented currency is only redeemable with them... so they can give you yet more branding and marketing in return for looking at branding and marketing!

    Clever ploy. I'd stay away personally.

  • Yes, PNG files are saved inside EXE files (and .cap files as well) for all textures. Don't know where they got the TGA idea from!

  • Basically what Davioware said is right - object types are global to the application, so if you have "MySprite" present in 6 layouts, and you change the animations for it in one, it's reflected throughout the application. Anything that can't be set per-instance (like animations, attributes, object name, icon etc) affects all of those objects in all layouts.

  • Can you post a .cap where this occurs? Do you have the grid enabled?

  • Why don't you just rotate every layer except the one you don't want to rotate? Or rotate the layer you don't want to rotate the same angle opposite to the display angle, so it cancels out the difference? I don't see why you need a feature to disable layer rotation specifically.

  • Log a bug for it, that sounds like the best thing to do.

  • Can you post a .cap file showing what's wrong?

  • Sorry, it's a limitation in the debugger - you can either run your application normally, or just ignore all the messages on startup and carry on (they only show once).

  • Did you try clicking the direct download link?

  • I don't think so - I think it'd be less elegant! You'd basically have extra icons in the event sheet editor for each type of plugin representing "all" those objects. They would basically useless, because they are too general - eg. actions in the "Sprite" class runs on ALL sprites, which is too broad - it'd include your UI sprites, effects sprites, terrain sprites, as well as players, bullets, enemies etc. etc. And then its functionality is identical to having added all those objects to a family anyway, but with the limitation you can't make it not apply to certain types of sprite. So it is actually less flexible, not to mention large changes to the runtime and event sheet editor to support this, which is hard work and would create new bugs. So I insist - just use a family!