Jump to content
Korean Random
Sign in to follow this  
zekias87

Minimap lines

Recommended Posts

First of all, thanks for implementing the minimap lines, I really missed them in this game patch. And also a big thanks to the xvm team for all their hard work!

 

Now to my question. In the minimapLines.xc I see this:

 

"camera": [
         { "$ref": { "path": "def.camera" }, "from": 50,   "to": 80,   "thickness": 1.3,  "alpha": 50 },
         { "$ref": { "path": "def.camera" }, "from": 120,  "to": 180,  "thickness": 1.2,  "alpha": 45 },
         { "$ref": { "path": "def.camera" }, "from": 220,  "to": 280,  "thickness": 1.1,  "alpha": 40 },
         { "$ref": { "path": "def.camera" }, "from": 320,  "to": 380,  "thickness": 1.0,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 420,  "to": 480,  "thickness": 0.9,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 520,  "to": 580,  "thickness": 0.8,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 620,  "to": 680,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 720,  "to": 780,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 820,  "to": 880,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 920,  "to": 980,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1020, "to": 1080, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1120, "to": 1180, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1220, "to": 1280, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1320, "to": 1380, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1420, "to": 1480, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1520, "to": 1580, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1620, "to": 1680, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1720, "to": 1780, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1820, "to": 1880, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1920, "to": 2000, "thickness": 0.75, "alpha": 35 },

 

 

Now lets say I want to make that line a dotted line instead. Like this .............................

How would I do that?

Im confused by all the lines that range for example 320 to 380 and then next line its 420 to 480. Theres 40m missing there but on the minimap it looks like a complete line.

Maybe Im totally off here :P

Share this post


Link to post

Short link
Share on other sites

It certainty doesn't produce a continuous line.

 

Ok, Ill take your word for it. The tank position line certainly look like a continous line to me, but it would make more sense if it wasnt :)

 

So I guess Ill just have to make shorter lines with more range between them then?

 

Edit* Doesnt the green line look like a continous line? Certainly doesnt look like a line thats 60 with 40 between?

map.png

Edited by zekias87

Share this post


Link to post

Short link
Share on other sites

zekias87

The green line is the direction your vehicle is pointing. The yellow line with dots is the camera direction.

 

The yellow line is defined by:

"vehicle": [
         { "$ref": { "path": "def.vehicle" }, "from": 50,  "to": 97,   "thickness": 1.5,  "alpha": 45 },
         { "$ref": { "path": "def.vehicle" }, "from": 100, "to": 147,  "thickness": 1.4,  "alpha": 40 },
         { "$ref": { "path": "def.vehicle" }, "from": 150, "to": 197,  "thickness": 1.3,  "alpha": 35 },
         { "$ref": { "path": "def.vehicle" }, "from": 200, "to": 248,  "thickness": 1.2,  "alpha": 33 },
         { "$ref": { "path": "def.vehicle" }, "from": 250, "to": 298,  "thickness": 1.1,  "alpha": 30 },
         { "$ref": { "path": "def.vehicle" }, "from": 300, "to": 398,  "thickness": 1.0,  "alpha": 30 },
         { "$ref": { "path": "def.vehicle" }, "from": 400, "to": 498,  "thickness": 0.9,  "alpha": 30 },
         { "$ref": { "path": "def.vehicle" }, "from": 500, "to": 2000, "thickness": 0.75, "alpha": 30 }
       ],

 

 

while the green camera line (with dots) is defined by:

"camera": [
         { "$ref": { "path": "def.camera" }, "from": 50,   "to": 80,   "thickness": 1.3,  "alpha": 50 },
         { "$ref": { "path": "def.camera" }, "from": 120,  "to": 180,  "thickness": 1.2,  "alpha": 45 },
         { "$ref": { "path": "def.camera" }, "from": 220,  "to": 280,  "thickness": 1.1,  "alpha": 40 },
         { "$ref": { "path": "def.camera" }, "from": 320,  "to": 380,  "thickness": 1.0,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 420,  "to": 480,  "thickness": 0.9,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 520,  "to": 580,  "thickness": 0.8,  "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 620,  "to": 680,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 720,  "to": 780,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 820,  "to": 880,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 920,  "to": 980,  "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1020, "to": 1080, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1120, "to": 1180, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1220, "to": 1280, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1320, "to": 1380, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1420, "to": 1480, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1520, "to": 1580, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1620, "to": 1680, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1720, "to": 1780, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1820, "to": 1880, "thickness": 0.75, "alpha": 35 },
         { "$ref": { "path": "def.camera" }, "from": 1920, "to": 2000, "thickness": 0.75, "alpha": 35 },
           //Dots
           //Точки
         { "$ref": { "path": "def.dot" }, "from": 99,   "to": 100,  "thickness": 2.2, "alpha": 70 },
         { "$ref": { "path": "def.dot" }, "from": 199,  "to": 200,  "thickness": 2.1, "alpha": 65 },
         { "$ref": { "path": "def.dot" }, "from": 299,  "to": 300,  "thickness": 2.0, "alpha": 60 },
         { "$ref": { "path": "def.dot" }, "from": 399,  "to": 400,  "thickness": 1.9, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 499,  "to": 500,  "thickness": 1.8, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 599,  "to": 600,  "thickness": 1.7, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 699,  "to": 700,  "thickness": 1.6, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 799,  "to": 800,  "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 899,  "to": 900,  "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 999,  "to": 1000, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1099, "to": 1100, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1199, "to": 1200, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1299, "to": 1300, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1399, "to": 1400, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1499, "to": 1500, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1599, "to": 1600, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1699, "to": 1700, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1799, "to": 1800, "thickness": 1.5, "alpha": 55 },
         { "$ref": { "path": "def.dot" }, "from": 1899, "to": 1900, "thickness": 1.5, "alpha": 55 }

 

 

If you want the camera line (the direction you are looking) to be all dots replace all of the camera and dots lines with:

"camera": [ { "$ref": { "path": "def.dot" }, "from": 50,   "to": 2000,  "thickness": 2.2, "alpha": 70 }],

 

This will give you dots from 50m to 2000m, change the thickness and brightness by changing the "thickness" and "alpha" numbers.

 

Higher up in minimapLines.xc you will see:

"dot": { "enabled": true, "inmeters": true, "color": "0xFFCC66" },

You can change FFCC66 to another value to change the color.

 

 

  • Upvote 1

Share this post


Link to post

Short link
Share on other sites

zekias87

The green line is the direction your vehicle is pointing. The yellow line with dots is the camera direction.

 

The yellow line is defined by:

"vehicle": [

         { "$ref": { "path": "def.vehicle" }, "from": 50,  "to": 97,   "thickness": 1.5,  "alpha": 45 },

         { "$ref": { "path": "def.vehicle" }, "from": 100, "to": 147,  "thickness": 1.4,  "alpha": 40 },

         { "$ref": { "path": "def.vehicle" }, "from": 150, "to": 197,  "thickness": 1.3,  "alpha": 35 },

         { "$ref": { "path": "def.vehicle" }, "from": 200, "to": 248,  "thickness": 1.2,  "alpha": 33 },

         { "$ref": { "path": "def.vehicle" }, "from": 250, "to": 298,  "thickness": 1.1,  "alpha": 30 },

         { "$ref": { "path": "def.vehicle" }, "from": 300, "to": 398,  "thickness": 1.0,  "alpha": 30 },

         { "$ref": { "path": "def.vehicle" }, "from": 400, "to": 498,  "thickness": 0.9,  "alpha": 30 },

         { "$ref": { "path": "def.vehicle" }, "from": 500, "to": 2000, "thickness": 0.75, "alpha": 30 }

       ],

 

 

while the green camera line (with dots) is defined by:

"camera": [

         { "$ref": { "path": "def.camera" }, "from": 50,   "to": 80,   "thickness": 1.3,  "alpha": 50 },

         { "$ref": { "path": "def.camera" }, "from": 120,  "to": 180,  "thickness": 1.2,  "alpha": 45 },

         { "$ref": { "path": "def.camera" }, "from": 220,  "to": 280,  "thickness": 1.1,  "alpha": 40 },

         { "$ref": { "path": "def.camera" }, "from": 320,  "to": 380,  "thickness": 1.0,  "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 420,  "to": 480,  "thickness": 0.9,  "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 520,  "to": 580,  "thickness": 0.8,  "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 620,  "to": 680,  "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 720,  "to": 780,  "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 820,  "to": 880,  "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 920,  "to": 980,  "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1020, "to": 1080, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1120, "to": 1180, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1220, "to": 1280, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1320, "to": 1380, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1420, "to": 1480, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1520, "to": 1580, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1620, "to": 1680, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1720, "to": 1780, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1820, "to": 1880, "thickness": 0.75, "alpha": 35 },

         { "$ref": { "path": "def.camera" }, "from": 1920, "to": 2000, "thickness": 0.75, "alpha": 35 },

           //Dots

           //Точки

         { "$ref": { "path": "def.dot" }, "from": 99,   "to": 100,  "thickness": 2.2, "alpha": 70 },

         { "$ref": { "path": "def.dot" }, "from": 199,  "to": 200,  "thickness": 2.1, "alpha": 65 },

         { "$ref": { "path": "def.dot" }, "from": 299,  "to": 300,  "thickness": 2.0, "alpha": 60 },

         { "$ref": { "path": "def.dot" }, "from": 399,  "to": 400,  "thickness": 1.9, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 499,  "to": 500,  "thickness": 1.8, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 599,  "to": 600,  "thickness": 1.7, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 699,  "to": 700,  "thickness": 1.6, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 799,  "to": 800,  "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 899,  "to": 900,  "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 999,  "to": 1000, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1099, "to": 1100, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1199, "to": 1200, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1299, "to": 1300, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1399, "to": 1400, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1499, "to": 1500, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1599, "to": 1600, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1699, "to": 1700, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1799, "to": 1800, "thickness": 1.5, "alpha": 55 },

         { "$ref": { "path": "def.dot" }, "from": 1899, "to": 1900, "thickness": 1.5, "alpha": 55 }

 

 

If you want the camera line (the direction you are looking) to be all dots replace all of the camera and dots lines with:

"camera": [ { "$ref": { "path": "def.dot" }, "from": 50,   "to": 2000,  "thickness": 2.2, "alpha": 70 }],

 

This will give you dots from 50m to 2000m, change the thickness and brightness by changing the "thickness" and "alpha" numbers.

 

Higher up in minimapLines.xc you will see:

"dot": { "enabled": true, "inmeters": true, "color": "0xFFCC66" },

You can change FFCC66 to another value to change the color.

 

Thank you! That answers my question!

Share this post


Link to post

Short link
Share on other sites

CAMERA,caaaamera direction, mate 

:que:

 

EDIT:

Ok, it's not vehicle gun direction. It's just vehicle direction. My bad. But it's not camera direction either... mate ;)

Edited by konrad509

Share this post


Link to post

Short link
Share on other sites

If you want the camera line (the direction you are looking) to be all dots replace all of the camera and dots lines with:

"camera": [ { "$ref": { "path": "def.dot" }, "from": 50,   "to": 2000,  "thickness": 2.2, "alpha": 70 }],

 

This will give you dots from 50m to 2000m, change the thickness and brightness by changing the "thickness" and "alpha" numbers.

 

Higher up in minimapLines.xc you will see:

"dot": { "enabled": true, "inmeters": true, "color": "0xFFCC66" },

You can change FFCC66 to another value to change the color.

 

I believe that this is incorrect -- it simply produces a single line with the color defined in "def.dot".

 

Each dot that you want to see needs to be specifically defined, in terms of position, thickness, and alpha, like what you see under "camera".

 

The default is 1 dot every 100m. If you want more dots, you need to add more lines, like so:

"camera": [

{ "$ref": { "path": "def.dot" }, "from": 74, "to": 75, "thickness": 2.2, "alpha": 70 },

{ "$ref": { "path": "def.dot" }, "from": 99, "to": 100, "thickness": 2.2, "alpha": 70 },

{ "$ref": { "path": "def.dot" }, "from": 124, "to": 125, "thickness": 2.1, "alpha": 65 },

{ "$ref": { "path": "def.dot" }, "from": 149, "to": 150, "thickness": 2.1, "alpha": 65 },

{ "$ref": { "path": "def.dot" }, "from": 174, "to": 175, "thickness": 2.1, "alpha": 65 },

{ "$ref": { "path": "def.dot" }, "from": 199, "to": 200, "thickness": 2.1, "alpha": 65 },

{ "$ref": { "path": "def.dot" }, "from": 224, "to": 225, "thickness": 2.0, "alpha": 60 },

{ "$ref": { "path": "def.dot" }, "from": 249, "to": 250, "thickness": 2.0, "alpha": 60 },

{ "$ref": { "path": "def.dot" }, "from": 274, "to": 275, "thickness": 2.0, "alpha": 60 },

{ "$ref": { "path": "def.dot" }, "from": 299, "to": 300, "thickness": 2.0, "alpha": 60 },

{ "$ref": { "path": "def.dot" }, "from": 324, "to": 325, "thickness": 1.9, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 349, "to": 350, "thickness": 1.9, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 374, "to": 375, "thickness": 1.9, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 399, "to": 400, "thickness": 1.9, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 424, "to": 425, "thickness": 1.8, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 449, "to": 450, "thickness": 1.8, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 474, "to": 475, "thickness": 1.8, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 499, "to": 500, "thickness": 1.8, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 524, "to": 525, "thickness": 1.7, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 549, "to": 550, "thickness": 1.7, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 574, "to": 575, "thickness": 1.7, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 599, "to": 600, "thickness": 1.7, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 624, "to": 625, "thickness": 1.6, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 649, "to": 650, "thickness": 1.6, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 674, "to": 675, "thickness": 1.6, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 699, "to": 700, "thickness": 1.6, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 724, "to": 725, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 749, "to": 750, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 774, "to": 775, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 799, "to": 800, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 849, "to": 850, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 899, "to": 900, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 949, "to": 950, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 999, "to": 1000, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1049, "to": 1050, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1099, "to": 1100, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1149, "to": 1150, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1199, "to": 1200, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1249, "to": 1250, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1299, "to": 1300, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1349, "to": 1350, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1399, "to": 1400, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1449, "to": 1450, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1499, "to": 1500, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1549, "to": 1550, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1599, "to": 1600, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1649, "to": 1650, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1699, "to": 1700, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1749, "to": 1750, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1799, "to": 1800, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1849, "to": 1850, "thickness": 1.5, "alpha": 55 },

{ "$ref": { "path": "def.dot" }, "from": 1899, "to": 1900, "thickness": 1.5, "alpha": 55 }

],

 

EmlRF36.png

Edited by scyorkie

Share this post


Link to post

Short link
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...