Versions in this module Expand all Collapse all v0 v0.1.0 Feb 12, 2019 Changes in this version + type EPair struct + Key string + Next *EPair + Value string + type Entity struct + EPairs *EPair + FirstBrush int + NumBrushes int + Origin mgl32.Vec3 + func FromVmfNode(entityNode *vmf.Node) Entity + func (ent *Entity) FloatForKey(key string) float32 + func (ent *Entity) FloatForKeyWithDefault(key string, defaultValue float32) float32 + func (ent *Entity) IntForKey(key string) int + func (ent *Entity) LightForKey(key string, useHDR bool, lightScale float32) (mgl32.Vec3, error) + func (ent *Entity) LightForString(light string, useHDR bool, lightScale float32) (mgl32.Vec3, error) + func (ent *Entity) ValueForKey(key string) string + func (ent *Entity) ValueForKeyWithDefault(key string, defaultValue string) string + func (ent *Entity) VectorForKey(key string) mgl32.Vec3 + type List struct + func FromVmfNodeTree(entityNodes vmf.Node) List + func NewEntityList(entities []Entity) List + func (list *List) Add(entity *Entity) int + func (list *List) FindByKeyValue(key string, value string) *Entity + func (list *List) FindForModel(modelNumber int) *Entity + func (list *List) Get(index int) *Entity + func (list List) Length() int