Transport Fever

Transport Fever

91 个评价
Train End Indicator DE/AT
   
奖励
收藏
已收藏
取消收藏
Scenario: Europe
标签: train
文件大小
发表于
458.956 KB
2019 年 2 月 24 日 上午 6:57
1 项改动说明 ( 查看 )

订阅以下载
Train End Indicator DE/AT

在 trunky 的 2 个合集中
Deutschland (DRG, DB, DB AG)
278 件物品
ModWerkstatt
164 件物品
描述
This mod contians Train End Indicator from Germany and Austria. This will be needed for some waggons. Information for Modder:
You may use these indicators in your mods without having to obtain permission. The condition is that only the groups in this mod are referenced. There must be no meshes included in your mods. The mod is accompanied by a text file in which the respective file paths can be found. If you need more textures, just let me know.


For questions the ModWerkstatt[modwerkstatt.com] is always available.
14 条留言
trunky  [作者] 2021 年 2 月 21 日 上午 8:43 
I've created a forum for english speaking folks as well, just if you need
https://modwerkstatt.com/community/general/
trunky  [作者] 2021 年 2 月 21 日 上午 8:42 
Ah sorry, we are in TPF1 Workshop, yes that's ok then :) Was my fault.
jeroezie 2021 年 2 月 21 日 上午 4:53 
I found the code group in kesselwagen_1950.mdl from the game files from Urban Games.
jeroezie 2021 年 2 月 21 日 上午 4:52 
I am playing/modding for TF1. I will put future queastions on a forum.
trunky  [作者] 2021 年 2 月 21 日 上午 4:02 
Are you sure it's the Indicator mod? There are no groups/grp in TPF2.
I would recommend to get your problem into a forum, comments are not the best place for it
jeroezie 2021 年 2 月 21 日 上午 3:40 
Keep getting this problem, do you know of any other mod that used these signals? Mayby I kan find the problem by lokking at anohter example. Another question, should I count these also, like a mesh?
{
id = "vehicle/waggon/kesselwagen_1950_lod0_bogie.grp",
transf = {
1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -4.8255, 0, 0, 1,
},
type = "GROUP",

},
trunky  [作者] 2021 年 2 月 20 日 上午 10:21 
trunky  [作者] 2021 年 2 月 20 日 上午 10:20 
as written before you need to count your mesh entries. Each appearance of {
materials = { "some_material.mtl", },
mesh = "some_mesh.msh",
transf = { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, },
},
counts as one. So if you have 3 blocks of that and then the end signal, the id of the signal is 4 and you write backForwardParts = { 4 },
If you have 10 blocks and then the signal the id you need is 11... and so on
jeroezie 2021 年 2 月 20 日 上午 10:16 
Thanks for your help, but I don't get it to work... I have made this code:
railVehicle = {
topSpeed = 160,
weight = 18,
configs = {
axles = { "vehicle/waggon/hbi1/lod_0_w1.msh" },
backForwardParts = { 12 },
backBackwardParts = { 13 },
},
soundSet = "waggon_freight_modern"
},

But somehow it seems to do nothing. I have tried all sorts of numbers for { XX }, but always with the same result, the end signals stay visible. I have looked at the code you used for the DRG/DB Chalk Bucket Car mod, but I am unable to find the problem. Do you have any suggestions?
trunky  [作者] 2021 年 2 月 20 日 上午 5:40 
you'll need to add the ID of the signal mesh in backForwardParts = { XX }, (where XX is your ID) ID counts up from 0, every children and every mesh entry increments it by 1