Jump to content
FoxFort

How to setup Group spacing

Recommended Posts

Hey everyone.

 

I am trying to find instructions on how does spacing (distance from one to another) works. But it I don't see anyone asking that, so I must be missing something very obvious. So I would need help with:

How does "position[]={0,0,0};" works?  - Currently I am using random numbers in positions just to get any spacing.

 

For example how to create Wedge formation via config file? How to set that leader is on the tip of wedge , 2nd unit is 20 meters from him on his 4 o'clock, 3rd person is 50 meters on his 8 o'clock, etc?

 

How Line formation would look like? 

 

Here is example we can use:

 

class example_Wedge
                {
                    name="Wedge";
                    class Unit0
                    {
                        side=1;
                        vehicle="any_unit";
                        rank="SERGEANT";
                        position[]={?,?,?};
                    };
                    class Unit1
                    {
                        side=1;
                        vehicle="any_unit";
                        rank="CORPORAL";
                        position[]={?,?,?};
                    };
                    class Unit2
                    {
                        side=1;
                        vehicle="any_unit";
                        rank="PRIVATE";
                        position[]={?,?,?};
                    }
                };

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×