EggFilenameNode

from panda3d.egg import EggFilenameNode
class EggFilenameNode

Bases:

Bases: EggNode

This is an egg node that contains a filename. It references a physical file relative to the directory the egg file was loaded in. It is a base class for EggTexture and EggExternalReference.

Inheritance diagram

Inheritance diagram of EggFilenameNode

assign(copy: EggFilenameNode) EggFilenameNode
static getClassType() panda3d.core.TypeHandle
getDefaultExtension() str

Returns the default extension for this filename type.

getFilename() panda3d.core.Filename

Returns a nonmodifiable reference to the filename.

getFullpath() panda3d.core.Filename

Returns the full pathname to the file, if it is known; otherwise, returns the same thing as getFilename().

This function simply returns whatever was set by the last call to setFullpath(). This string is not written to the egg file; its main purpose is to record the full path to a filename (for instance, a texture filename) if it is known, for egg structures that are generated in-memory and then immediately converted to a scene graph.

setFilename(filename: panda3d.core.Filename)
setFullpath(fullpath: panda3d.core.Filename)

Records the full pathname to the file, for the benefit of getFullpath().