Page 1 sur 1

Comment customiser les etiquettes ?

Publié : mar. mars 07, 2017 9:10 am
par III/JG52-Drach
Bonjour

Je souhaite customiser les étiquettes en vol , peux m'importe le type d'appareils et le nom du pilote je souhaiterai que juste le petit ' ainsi que la distance soient visibles. j'ai essayé de modifier le fichier suivant puis je l'ai placé dans mon fichier Utilisateur partie enregistrées\DCS\config\View comme indiqué :

AirFormat = {
--[distance] = {format , alignment,color_blending_k,opacity,shift_pixels_x,shift_in_pixels_y}
[10] = {"" ,"LeftBottom",1 , 1 },
[5000] = {"'"}%n%D" ,"LeftBottom",0.75 , 0.7 },
[10000] = {"'"}%n%D" ,"LeftBottom",0.75 , 0.5 },
[20000] = {"'"}%n%D" ,"LeftBottom",0.25 , 0.25},
[30000] = {"'" ,"LeftBottom",0 , 0.1 },
}


Ce qui a fait disparaître toutes les étiquettes. quelqu’un pourrait il m expliquer ce qui cloche ?

Merci

Re: Comment customiser les etiquettes ?

Publié : mar. mars 07, 2017 7:30 pm
par zeufman
Voici le mien, enregistré en Labels.lua dans saved games\DCS\Config\View
( de préférence éditer le fichier avec Notepad+ )

Code : Tout sélectionner

-- Label parameters -- Copyright (C) 2004, Eagle Dynamics. AirOn = true GroundOn = true NavyOn = true WeaponOn = true -- Label max distance depends on graphics visibility range option value -- For low E40000.0 m -- For medium E50000.0 m -- For high E80000.0 m --------------------------------- -- Label text format symbols -- %N - name of object -- %D - distance to object -- %P - pilot name -- %n - new line -- %% - symbol '%' -- %x, where x is not NDPn% - symbol 'x' -- %C - extended info for vehicle's and ship's weapon systems ------------------------------------------ -- Example -- labelFormat[5000] = "Name: %N%n Distance: %D%n Pilot: %P" -- up to 5km label is: -- Name: Su-33 -- Distance: 30km -- Pilot: Pilot1 AirFormat = {} AirFormat[2000] = "" AirFormat[5000] = "%D" AirFormat[10000] = "}%N%n%D" AirFormat[20000] = "]%n%D" AirFormat[30000] = "'" GroundFormat = {} GroundFormat[3000] = "" GroundFormat[5000] = "%D" GroundFormat[10000] = "~%n%D" GroundFormat[20000] = "`" NavyFormat = {} NavyFormat[2000] = "" NavyFormat[10000] = "{%N%n%D" NavyFormat[20000] = "~%n%D" NavyFormat[40000] = "`" WeaponFormat = {} WeaponFormat[5000] = "[%N%n%D" WeaponFormat[10000] = "|%n%D" WeaponFormat[20000] = "|" -- Colors in {red, green, blue} format, volume from 0 up to 255 ColorAliesSide = {255, 50, 0} ColorEnemiesSide = {0, 50, 255}

Re: Comment customiser les etiquettes ?

Publié : mar. mars 07, 2017 11:37 pm
par III/JG52-Drach
Merci zeufman J'ai compris mes erreurs et je viens de tester, ca fonctionne correctement.

:notworthy