Skip to content

package shading_workspace

import "kaijuengine.com/editor/editor_workspace/shading_workspace"

Constants

ID

"shading"

DisplayName

"Shading"

Types

ShadingWorkspace

struct

type ShadingWorkspace struct {
    common_workspace.CommonWorkspace

    // Has unexported fields.
}

ShadingWorkspace.Close

func (w *ShadingWorkspace) Close()

ShadingWorkspace.DisplayName

func (w *ShadingWorkspace) DisplayName() string

ShadingWorkspace.Hotkeys

func (w *ShadingWorkspace) Hotkeys() []common_workspace.HotKey

ShadingWorkspace.ID

func (w *ShadingWorkspace) ID() string

ShadingWorkspace.Initialize

func (w *ShadingWorkspace) Initialize(ed editor_workspace.WorkspaceEditorInterface) error

ShadingWorkspace.IsRequired

func (w *ShadingWorkspace) IsRequired() bool

ShadingWorkspace.Open

func (w *ShadingWorkspace) Open()

ShadingWorkspace.OpenSpec

func (w *ShadingWorkspace) OpenSpec(id string)

ShadingWorkspace.Shutdown

func (w *ShadingWorkspace) Shutdown()

ShadingWorkspace.Update

func (w *ShadingWorkspace) Update(deltaTime float64)

ShadingWorkspaceUIData

struct

type ShadingWorkspaceUIData struct {
    Files []ShadingWorkspaceUIDataFile
}

ShadingWorkspaceUIDataFile

struct

type ShadingWorkspaceUIDataFile struct {
    Id   string
    Type string
    Name string
}