mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +02:00
Make teleport parabolas semi-transparent
This commit is contained in:
parent
f2c13f193c
commit
7f518d0aa1
1 changed files with 3 additions and 3 deletions
|
@ -55,21 +55,21 @@ Script.include("/~/system/libraries/controllers.js");
|
||||||
|
|
||||||
var cancelPath = {
|
var cancelPath = {
|
||||||
color: COLORS_TELEPORT_CANCEL,
|
color: COLORS_TELEPORT_CANCEL,
|
||||||
alpha: 1,
|
alpha: 0.3,
|
||||||
width: 0.025,
|
width: 0.025,
|
||||||
drawInFront: true
|
drawInFront: true
|
||||||
};
|
};
|
||||||
|
|
||||||
var teleportPath = {
|
var teleportPath = {
|
||||||
color: COLORS_TELEPORT_CAN_TELEPORT,
|
color: COLORS_TELEPORT_CAN_TELEPORT,
|
||||||
alpha: 1,
|
alpha: 0.7,
|
||||||
width: 0.025,
|
width: 0.025,
|
||||||
drawInFront: true
|
drawInFront: true
|
||||||
};
|
};
|
||||||
|
|
||||||
var seatPath = {
|
var seatPath = {
|
||||||
color: COLORS_TELEPORT_SEAT,
|
color: COLORS_TELEPORT_SEAT,
|
||||||
alpha: 1,
|
alpha: 0.7,
|
||||||
width: 0.025,
|
width: 0.025,
|
||||||
drawInFront: true
|
drawInFront: true
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue