VE Lua Documentation

Press F to search!

getMaterialsParticlesTable

Definition


-- @/lua/common/particles.lua:122

local function getMaterialsParticlesTable()
    return materials, materialsMap
end

Callers

@/lua/vehicle/bdebugImpl.lua
    -- Averaging colors https://stackoverflow.com/a/29576746
    local materials = particles.getMaterialsParticlesTable()
    initRenderNodeTexts(partsSelected, showWheels)
@/lua/common/jbeam/tableSchema.lua

local materials, materialsMap = particles.getMaterialsParticlesTable()
@/lua/vehicle/input.lua
    understeerAssistedSurfacesCache = {}
    for k, v in pairs(particles.getMaterialsParticlesTable()) do
      understeerAssistedSurfacesCache[k] = understeerAssistedSurfaces[v.name]
@/lua/vehicle/particlefilter.lua

local materials, materialsMap = particles.getMaterialsParticlesTable()
@/lua/ge/extensions/util/docCreator.lua
  -- Materials
  local materials, _ = require("particles").getMaterialsParticlesTable()
  local materialsClean = {}
@/lua/ge/extensions/core/environment.lua
  local particles = require("particles")
  local materials = particles.getMaterialsParticlesTable()
@/lua/common/jbeam/loader.lua
M.data = {}
M.materials, M.materialsMap = particles.getMaterialsParticlesTable()
@/lua/ge/extensions/editor/vehicleEditor/staticEditor/veJBeamModifierLeakVis.lua

local materials, materialsMap = particles.getMaterialsParticlesTable()