This repository was archived by the owner on Apr 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +969
-1
lines changed
python2.7libs/CacheManager Expand file tree Collapse file tree 9 files changed +969
-1
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,19 @@ Bento is a toolset for houdini.
1414* [ Cache Dependency] ( docs/cacheDependency.md )
1515* [ Creat Delayed Load Procedural] ( docs/create-dlp.md )
1616
17+ ### Python Panel
18+
19+ * [ Cache Manager] ( docs/cacheManager.md )
20+
21+ ![ alt tag] ( docs/img/ss_cache_manager_0001.png )
1722
1823## Install
19241 . Clone or Download this repository to your place you want to download.
20252 . Place this repository to houdini-accessible place.
21263 . Open ** houdini.env** .
22274 . Add ` HOUDINI_PATH ` in the ** houdini.env** file.
23- * Ex: ` HOUDINI_PATH = &:/anywhere/you/want/to/install/Bento ` (Linux)
28+ * Ex: ` HOUDINI_PATH = /anywhere/you/want/to/install/Bento:& ` (Linux)
29+ * Ex: ` HOUDINI_PATH = \anywhere\you\want\to\install\Bento;& ` (Windows)
2430 * To add ` & ` is important to keep original Houdini Path.
2531
2632
Original file line number Diff line number Diff line change 1+ # Cache Manager
2+
3+ ![ alt tag] ( img/ss_cache_manager_0001.png )
4+
5+ ## Feature
6+
7+ * List cache nodes scatted everywhere in Houdini scene.
8+ * Filter Read/Write and Multi type of nodes
9+
10+ ## How to
11+
12+ * Update view with "Ctrl+R"("⌘+R" on Mac) or "F5".
13+ * RMB click over each items and show a menu.
14+ * Click "Replace Cache File" in RMB Menu for opening a file select dialog.
15+ * Click "Focus this node" in RMB Menu for selecting the node you RMB clicked.
16+ * View > "Toggle R/W" show Read/Write type of nodes.
17+ * View > "Both Nodes" or "Read Nodes Only" or "Write Nodes Only" filter displayed nodes by Read/Write type.
18+
19+ ## Supported Nodes
20+
21+ ### SOP
22+ | Node | Parameter |
23+ | :-------------------| :--------------|
24+ | Alembic | File Name |
25+ | Dop I/O | Geometry File |
26+ | File | Geometry File |
27+ | File Cache | Geometry File |
28+ | MDD | MDD File |
29+ | ROP Alembic Driver | Alembic File |
30+ | ROP Output Driver | Output File |
31+ | Table Import | File |
32+
33+ ### ROP
34+ | Node | Parameter |
35+ | :---------| :-------------|
36+ | Alembic | Alembic File |
37+ | Geometry | Output File |
38+
39+ ### SHOP
40+ | Node | Parameter |
41+ | :-----------------------:| :-------------:|
42+ | Delayed Load Procedural | Geometry File |
43+
44+ ### Object
45+ | Node | Parameter |
46+ | :----------------| :--------------|
47+ | Alembic Archive | File name |
48+ | Dop Network | Geometry File |
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ #-------------------------------------------------------------------------------
3+ ## Description
4+ """
5+ CacheManager directory as a module.
6+ """
7+ #-------------------------------------------------------------------------------
8+
9+ import sys
10+ sys .dont_write_bytecode = True
11+
12+ #-------------------------------------------------------------------------------
13+ # EOF
14+ #-------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments