David's Forum Posts

  • Well I was find, but it was... so like then, and it was all GRRRRRRRR!

    ~Sol

    Can anyone translate? I speak good Australian, but that's beyond me

  • I just wanna take some quotes from that site:

    [quote:5mgetp1h]L�VE is created by these stunningly handsome individuals. Do not hesitate to contact us if you have questions or comments. If e-mail is too personal for you, there's also the forum.

    [quote:5mgetp1h]we can now experience true L�VE via apt-get ... (^_^)/

    [quote:5mgetp1h]group hug the newbie thread

    Okay I cant be bothered finding more...but yeah...all I can say is...rainbows

    But the screenshots look pretty lol

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hey now theres an idea!

    Our debugger lets you change values of things at runtime...but it would be cool if you could actually modify edittime values via the runtime and runtime variables via the edittime. Something to add to the 'todo' list

  • [quote:cdu3v6zm]walking animations based on the terrain

    Heh I never thought of it like that but your right. you could potentially design it so theres two objects for the 'feet' and foot one moves, then foot two move, and the torso gets positioned between the two feet etc. The IK calculates the legs respectively, and your got a pretty damn awesome walk animation where going up steps and slopes looks completely natural (rather than players feet being over the edge).

    Man the possibilities :O

  • Hmm this is something someone should test. Create 10,000 sprites with a single image, check fps, then create 10,000 tiled backgrounds with the same size, check fps. They should be the same...if not then it should be looked into.

  • I used the recommending by microsoft deadzones...i tried lowering them a bit and i had 'troubles' so i kept them as they were, but i'll make them customisable

  • Um just a simple construct game I put together where u shoot familiar looking mushrooms. Left trigger zooms in, right trigger fires, and the left anologue sticks moves the cursor. I think I've implimented the code for deadzones etc correctly, does it 'feel' correct ?

  • <img src="http://badpacino.files.wordpress.com/2008/04/can27t-stop-the-music-784298.jpg">

  • Yeah apparently someone used a forward slash instead of a backwards slash and it broke everything

  • Out of interest, how many of you guys have a wired 360 controller, or a wireless 360 controller with a windows reciever? I just tried connected my 360 controller with windows xp, all i need to do was go here http://www.microsoft.com/hardware/gaming/download.mspx and download the drivers and tomb raider worked with the controller

  • Its quite simple. Tiled backgrounds render in a special way such that the uv co-ordinates wrap instead of clamp. So when a tiled background is rendered at a decimal place co-ordinate, the texture interpolation is grabbing colours from the right. You notice this something in low quality 3d games when people accidentally setup the wrapping incorrectly and you get trees that have a semitransparent line above them etc.

    This isn't necessarily a bug in some situations. If you have a tiled background that is a seamless texture, you expect the texture in calculated the interpolated pixels, to account for the pixels that are wrapped on the other side of the image.

    Ultimately when it comes down to it though...why are you using a tiled background for these tiles which you dont actually want to tile at all? The tiled background object is really for images that you want to repeat over and over again.

  • Search anything and you get 'this site is harmful'...oh goes the internetz are harmful!

  • The splash effect at the bottom that uses 150 particles looks awesome! As for the water fall itself, that uses way too many particles lol. You could probably get decent results with a lot less and perhaps even using plasma...

    But yeah, love the splash at the bottom!

  • Create creates one object.

    Spawn will, for every instance of the object whos action you are calling (lets call it parent), create an object at the same co-ordinates and angle as the parent. Spawn is usually used if u want an enemy to spit out blood, or the soldiers to fire bullets, etc

  • Yep Never the less, its a nice way to scroll around, anyone making their own level editors should use that event rather than trying to create scrollbars or something (which is harder to make, and less intuative to use)