File size: 2,375 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
--- Editor specific functions.
-- These are functions used in keybindings and you will generally not use them in your code. However, 'editor.GetSel' could be useful for typing debug statements in the console.
--- Returns a list of the currently selected objects in the editor.
-- @cstyle objlist editor.GetSel().
-- @return objlist.
function editor.GetSel()
end
-- @cstyle bool editor.IsSelected(CObject object).
-- @return bool.
function editor.IsSelected(object)
end
--- Clears the editor selection.
-- @cstyle void editor.ClearSel().
-- @return void.
function editor.ClearSel()
end
--- Adds all objects contained in ol to the current selection.
-- @cstyle void editor.AddToSel(objlist ol).
-- @param ol objlist; the object list to add.
-- @return void.
function editor.AddToSel(ol)
end
--- Set the objects contained in the current selection.
-- @cstyle void editor.SetSel(objlist ol).
-- @param ol objlist; the object list to remain selected.
-- @return void.
function editor.SetSel(ol)
end
--- Changes the selection to the new one with support for undo/redo.
-- @cstyle void editor.ChangeSelWithUndoRedo(objlist sel).
-- @param sel; the new selection to be set.
-- @return void.
function editor.ChangeSelWithUndoRedo(sel)
end
--- Deletes the objects in the current editor selection leaving a trace in the undo/redo queue.
-- @cstyle void editor.DelSelWithUndoRedo).
-- @return void.
function editor.DelSelWithUndoRedo()
end
--- Clears the current editor selection leaving a trace in the undo/redo queue.
-- @cstyle void editor.ClearSelWithUndoRedo().
-- @return void.
function editor.ClearSelWithUndoRedo()
end
-- Marks the start of an editor undo operation
-- @cstyle bool XEditorUndo:BeginOp(table params)
-- @param params; optional - table with flags and/or list of objects to be modified
--- params entries:
---- height = true - enables undo of the height map
---- terrain_type = true - enables undo of the terrain types
---- passability = true - enables undo of the passability
---- objects = objects - the objects at the start of the editor operation.
-- @return void.
function XEditorUndo:BeginOp(params)
end
-- Marks the end of an editor undo operation
-- @cstyle bool XEditorUndo:EndOp(int id, table objects)
-- @param objects; optional - the objects at the end of the editor operation.
-- @return void.
function XEditorUndo:EndOp(objects)
end
|