Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit 07c1913

Browse files
authored
Merge pull request #1 from takavfx/develop
Merge for release v3.0.0
2 parents 12c78bb + 624fc0c commit 07c1913

File tree

9 files changed

+969
-1
lines changed

9 files changed

+969
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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
1924
1. Clone or Download this repository to your place you want to download.
2025
2. Place this repository to houdini-accessible place.
2126
3. Open **houdini.env**.
2227
4. 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

docs/cacheManager.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 |

docs/img/ss_cache_manager_0001.png

126 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
#-------------------------------------------------------------------------------

0 commit comments

Comments
 (0)