Teardown
Оценок: 476
de_vertigo
5
2
5
2
2
2
2
   
Наградить
В избранное
В избранном
Удалить
Type: Content, Spawn
Category: Map, Gameplay
Размер файла
Добавлен
Изменён
109.443 MB
19 ноя. 2021 г. в 13:37
8 дек. 2023 г. в 19:23
Обновлений: 16 (просмотреть)

Подпишитесь, чтобы загрузить
de_vertigo

Описание
Vertigo from Counter Strike: Global Offensive, recreated in Teardown. There is a sandbox mode as well as a custom campaign included in the map.

Credits:
-csubliminal - mapping and modeling
-The Mafia/Prop Guy - scripting, modeling, campaign
-Thomasims - lots of scripting help
-MrJaydanOz - deleteAllBelow script (sourced from https://steamcommunity.com/sharedfiles/filedetails/?id=2579654883)
-Oleg Borysov - terminal radar image
-Valve - Vertigo (and Coop Autumn) from CS:GO
-Teardown Discord - troubleshooting and support :)
-Last but not least, a special thanks to 3kliksphilip! - https://youtu.be/X5S4O7s8VH0

Check out our other CS:GO map, de_train! https://steamcommunity.com/sharedfiles/filedetails/?id=2803318896
Report/find bugs in the pinned thread below!

Have fun, don't fall off the building, and rush B!



Note: neither I, csubliminal, nor The Mafia are affiliated with any potential re-uploads of this map or its resources within or outside of the Steam Workshop. If you use resources from this map in a published project, please give proper credit in its description. :p
Популярные обсуждения Просмотреть все (1)
6
8 авг. 2023 г. в 11:55
ЗАКРЕПЛЕНО: Known Bugs
The Mafia
Комментариев: 146
csubliminal  [создатель] 22 мар в 8:11 
Make sure you are looking for “de_vertigo” and not just “vertigo” in the subscribed mods list. If it still doesnt show up then you could try unsubscribing and resubscribing, hope this helps
dba 22 мар в 0:33 
i cant find the map
Camozol 11 июн. 2024 г. в 4:07 
correction: the shadow size is 100x100x100
Camozol 11 июн. 2024 г. в 0:00 
also, wheres the script in the map?
Camozol 10 июн. 2024 г. в 23:14 
ill try and do that
Camozol 10 июн. 2024 г. в 23:14 
i forgor
csubliminal  [создатель] 10 июн. 2024 г. в 21:17 
Did you change it in the "height = GetFloatParam("height", "-100")" section or the "local list = QueryAabbShapes(Vec(1000, height 100,1000), Vec(-1000, height, -1000))"? With the script set with this it works on my end:

function init()
height = GetFloatParam("height", "-10")
end

function tick(dt)
local list = QueryAabbShapes(Vec(-1000, height -100,-1000), Vec(1000, height, 1000))
for i=1, #list do
xsize, ysize, zsize = GetShapeSize(list )
if xsize < 200 and ysize < 200 and zsize < 200 then
Delete(list )
end
end
end

If that still doesnt work, maybe try making the box smaller, so something closer to:
local list = QueryAabbShapes(Vec(-200, height -100,-200), Vec(200, height, 200))
for i=1, #list do
Camozol 9 июн. 2024 г. в 23:51 
its still not working, again ://
Camozol 9 июн. 2024 г. в 23:21 
ok
csubliminal  [создатель] 9 июн. 2024 г. в 12:16 
Looks like your height value was too low, try setting your height value to -10 instead.