ジャンプ先: 概要. 戻り値. キーワード. 関連. フラグ. MEL 例.
dbpeek [-allObjects] [-count uint] [-operation string] [-outputFile string] [-type string]
dbpeek は、取り消し不可能、照会可能、および編集不可能です。
dbpeek コマンドは、注目する情報について Maya データを分析するために使用します。分析できる情報のタイプの詳細については、フラグの説明を参照してください。
string[] | 操作の照会では、使用可能な操作を含む文字配列が得られます。 |
string | 出力ファイルなしで特定の操作を照会すると、その操作に関するヘルプ情報を含む文字列が返されます。 |
int | 出力ファイルありで特定の操作を照会すると、その操作に関するヘルプ情報がダンプされ、発生したエラーの数が返されます。 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
debug, node, attribute
dbcount, dgInfo, dgdirty, dgeval, dgmodified
allObjects, count, operation, outputFile, type
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Find the available peek types
dbpeek -op -query;
// Return: metadata nodes references //
// Describe the detail of a single available type
dbpeek -query -op "nodes";
// Return: The operation 'nodes' understands type flags 'attributes, visible'.
The 'visible' flag filters the display list to ignore any hidden
or internal nodes. Default is to show all nodes
Normal display will show a count of nodes in the scene of each
type. Adding the 'attributes' flag includes the attribute count
for each node as well, segregated by static, extension, and dynamic types.
//
// Describe the detail of a single available operation
dbpeek -op plugIterator -query
// Return: The test 'plugIterator' doesn't have any type flags.
Suggested iteration count minimum is 1000000 for which the test machine
measured a time of 19.234s.
This tests the performance of the class which iterates over all of the
networked plugs in a plug tree.
//
// Run a performance test for 1000000 loops
dbpeek -op plugIterator -count 1000000
// Return: Run 10,000 loops of plug iteration over a tree of size 51, depth 4
Total time: 17.0s
Maximum time: 0.81s
Minimum time: 0.23s
Average time: 0.30s
//
// Run a performance test for 1000000 loops and store the results
dbpeek -op plugIterator -count 1000000 -of "MyFile.txt"
// Return: 0 //
loadPlugin MetadataSample;
polyPlane -n "planeLuck";
dataStructure -asString "name=TestStructure:int32=ID"
importMetadata -asString "channel face\n stream\n TestStream\n TestStructure\n 0\n 99\n 1\n 999\n 2\n 9999\n endStream\n endChannel\n endAssociations" "planeLuckShape";
// Peek at the newly created metadata
//
dbpeek -op "metadata" -type "summary";
// Return: Node planeLuckShape : face( TestStream[3] ) //