User Tag List

Page 3 of 5 FirstFirst 1 2 3 4 5 LastLast
Results 21 to 30 of 41

Thread: Isometric Tank Engine (Real Movement) collide problem

  1. #21
    Clicker

    Fusion 2.5 MacFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUniversal Windows Platform Export ModuleSWF Export ModuleFirefly 3D ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)Firefly 3D Module (Steam)
    pradeep's Avatar
    Join Date
    Dec 2013
    Location
    India
    Posts
    428
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by warlords View Post
    If you try this link https://sitecheck.sucuri.net/results/megajava.dk

    some of my mfa files they doesn't like ...
    Site is Blacklisted
    by McAfee

  2. #22
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    pradeep is there something you can do to avoid it?

  3. #23
    Clicker

    Fusion 2.5 MacFusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleHTML5 Export ModuleiOS Export ModuleUniversal Windows Platform Export ModuleSWF Export ModuleFirefly 3D ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)Firefly 3D Module (Steam)
    pradeep's Avatar
    Join Date
    Dec 2013
    Location
    India
    Posts
    428
    Mentioned
    11 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by warlords View Post
    pradeep is there something you can do to avoid it?
    Use dropbox or googledrive

  4. #24
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Super Pradeep will do ...

    Here is a dropbox Exe file: https://www.dropbox.com/s/ugjk7r5vrr...0Demo.exe?dl=0

  5. #25
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    https://www.dropbox.com/s/kfjll2jjra...roy_1.mfa?dl=0

    I tryed the collison code MuddyMole but it delete all object right away, when dublicated!

  6. #26
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLC

    Join Date
    Jul 2008
    Location
    UK
    Posts
    1,553
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    Use the built-in ForEach system, not the extension, which doesn't scope instances properly. You can find the actions and conditions here:
    Active -> Count -> For each object
    Active -> Loops -> On each object

    Also, you used "compare two general values" when testing if Armour <= 0.
    It is almost never a good idea to use "compare two general values" when dealing with multiple instances of the same object, as it doesn't scope them properly. Always get the value directly from the object, using "compare to one of the alterable values".
    You'll see in the expression list editor, it should say "Armour of Active <= 0" instead of "Armour("Active") <= 0".

    If you make those changes, it will work.

    Good luck! It's definitely a big challenge you're undertaking. I'm old enough to remember when the original "Command & Conquer" was released, and in the following year or two, there was a deluge of clones all trying to imitate its success, and not one of them had a decent pathfinding and movement system (including C&C itself) - you'd always find yourself cursing at that one tank you desperately needed, that for some reason had decided to just wonder off somewhere, or got itself stuck on an obstacle. You really had to micro-manage every single unit to avoid them doing something stupid.

    I think it would be worth reading up on the problem of avoiding overlapping units in RTS design in general, as it's going to be the same whether you're using Fusion or Unity or anything else, and if you can find out how it's done in one game engine, it should be possible to implement the same system in Fusion.

  7. #27
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)


    This work like perfect! My first war came alive.

  8. #28
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Force animation for under tank with 360 images works fine and nice in Rotation. But the turrets look at the enemy's object. Can you aim with an angle just like the direction do right now.

  9. #29
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLC

    Join Date
    Jul 2008
    Location
    UK
    Posts
    1,553
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    I think this is what you mean?

    angle = ATan2( Y("turret") - Y("target"), X("target") - X("turret") )
    or
    angle = VAngle( X("target") - X( "turret" ), Y("target") - Y( "turret" ) )

    The "VAngle" expression is found in: Special Object -> Distance and Angle -> Angle of vector
    VAngle() will always return a value in the range 0 to 360, whereas ATan2() will return a value in the range -180 to 180 (eg. -30 instead of 330, which generally makes no difference). VAngle() also only returns an integer instead of a float, and it's a bit easier to remember the order of the arguments (Bx-Ax, By-Ay), whereas with ATan2(), it's a little more tricky (Ay-By, Bx-Ax).

  10. #30
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)
    warlords's Avatar
    Join Date
    Oct 2011
    Location
    Denmark
    Posts
    723
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Thanks MuddyMole ...

    Oh no, now I have a bigger problem than I thought! I now have 360 images that I have to make an action spot on. The problem is that every time you select a picture, set the action spot, all the pictures roll up to start, which I have thought is wrongly done in fusion.

    If you don't understand what I mean, I'll make a little clip about it.

Page 3 of 5 FirstFirst 1 2 3 4 5 LastLast

Similar Threads

  1. Isometric Engine Help Please
    By ZeoliteGod in forum Fusion 2.5
    Replies: 2
    Last Post: 27th March 2020, 10:28 PM
  2. Ultimate How-To: Real 3D Isometric Movement
    By JimJam in forum File Archive
    Replies: 5
    Last Post: 31st January 2013, 03:12 PM
  3. Isometric engine
    By DanielH in forum File Archive
    Replies: 7
    Last Post: 7th October 2011, 12:39 AM
  4. Custom Iso Movement Jump/Collide Problem
    By Kid_Roleplay in forum File Archive
    Replies: 8
    Last Post: 21st March 2010, 12:19 PM
  5. Problem with Movement Engine
    By Gerblegod7 in forum File Archive
    Replies: 3
    Last Post: 29th January 2007, 06:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •