安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题








" local fade = Isaac.Spawn(1000, dvd.Particle, 0, d.dvd.Position, Vector(0, 0), nil)
local fd = fade:GetData()
local fs = fade:GetSprite()
fade.PositionOffset = d.dvd.PositionOffset
if dvdd.launchdir.Y == -1 then
fs:Play("ParticleN")
elseif dvdd.launchdir.X == 1 then
fs:Play("ParticleE")
elseif dvdd.launchdir.Y == 1 then
fs:Play("ParticleS")
elseif dvdd.launchdir.X == -1 then
fs:Play("ParticleW")
end
fs.Color = Color(1, 1, 1, .25, 0, 0, 0) "
Change in last line .25 to 0, like this: " fs.Color = Color(1, 1, 1, 0, 0, 0, 0)" and that's all.
This doesn't remove trail at all, just makes it invisible. It's not a problem in code (all stand characters, as I inspecting, seems like just the same code) it's that Particle sprite data that is absent. I think if you remove all stand characters, that mod can't load any sprite data at all, so it shows nothing, but still that trail function is working. So my thought is to add ParticleN, W, S, E sprite data to this mod and that problem will be gone.