File size: 1,371 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
-- base class required for filtering in map editor
DefineClass.Decal = {
__parents = { "CObject" },
flags = { efSelectable = false, efSunShadow = false, efShadow = false, cofComponentColorizationMaterial = true, },
properties = {
{ category = "Decal", id = "sort_priority", name = "SortPriority", editor = "number", default = 0, max = 3, min = -4, template = true }
}
}
function Decal:SetShadowOnly(bSet)
if g_CMTPaused then return end
if bSet then
self:SetHierarchyGameFlags(const.gofSolidShadow)
else
self:ClearHierarchyGameFlags(const.gofSolidShadow)
end
end
DefineClass.TerrainDecal =
{
__parents = { "Decal", "EntityClass" },
flags = { cfDecal = true },
}
DefineClass.BakedTerrainDecal =
{
__parents = { "TerrainDecal", "InvisibleObject" },
flags = { cfConstructible = false, efBakedTerrainDecal = true },
max_allowed_radius = hr.TR_DecalSearchRadius * guim,
}
function BakedTerrainDecal:ConfigureInvisibleObjectHelper(helper)
helper:SetColorModifier(RGBRM(60, 60, 60, 127, 127))
helper:SetScale(35)
self:SetVisible(true)
end
DefineClass.BakedTerrainDecalLarge =
{
__parents = { "BakedTerrainDecal" },
flags = { efBakedTerrainDecalLarge = true },
}
DefineClass.BakedTerrainDecalDetailed =
{
__parents = { "BakedTerrainDecal" },
flags = { gofDetailedDecal = true },
max_allowed_radius = hr.TR_DetailedDecalSearchRadius * guim,
}
|