






[{"content":" 快速複製常用的文字樹狀圖模板與符號，\n用於筆記、結構、文件整理等。\n基本模板 # 主分類 ├── 子分類A │ ├── A1 │ └── A2 └── 子分類B ├── B1 └── B2 三層結構（常用） # 主分類 ├── 分類1 │ ├── 項目1 │ └── 項目2 └── 分類2 ├── 項目3 └── 項目4 專案/資料夾結構結構 # my-project/ ├── src/ │ ├── components/ │ │ ├── Header.js │ │ └── Footer.js │ └── index.js ├── public/ │ └── index.html └── package.json 基本結構符號：🛠️ 自由組合 # 整理常用「文字樹狀圖符號」，可自由組合、擴展自己的模板~\n符號 用途說明 程式碼範例 實際渲染效果 ├─ 中間分支節點\n（後面還有同層級的項目） ├─ 子項目A ├─ 子項目A └─ 結尾分支節點\n（該層級的最後一個項目） └── 最後一項 └── 最後一項 │ 垂直延伸線\n（用於連接下方更深層的子項目） │ ├── 項目 │ ├── 項目 ── 水平連接線\n（用於拉長結構距離） ├─── 項目 ├─── 項目 節點點綴圖示 # ● ○ ◎ ◉ ■ □ ▢ ▣ ◆ ◇ ▸ ▹ ▶ 📂📄 分類感框架（適合標記屬性 # [ ] ( ) { } \u0026lt; \u0026gt; 【 】 「 」 ","date":"3030-50-39","externalUrl":null,"permalink":"/tc/notes/text-tree-diagram/","section":"筆記","summary":"\u003cp\u003e\n\u003cfigure\u003e\n        \u003cimg\n          class=\"my-0 rounded-md nozoom flex justify-center w-custom-330\"\n          srcset=\"\n          /notes/text-tree-diagram/images/inner_cover_text-tree-diagram_hu_900d28d7a63b206e.jpg 330w,\n          /notes/text-tree-diagram/images/inner_cover_text-tree-diagram_hu_5b7da8d454f24e04.jpg 660w,\n          /notes/text-tree-diagram/images/inner_cover_text-tree-diagram_hu_3dcbbd66f12a0945.jpg 1024w,\n          /notes/text-tree-diagram/images/inner_cover_text-tree-diagram_hu_b43071b4d837c467.jpg 2x\"\n          src=\"/notes/text-tree-diagram/images/inner_cover_text-tree-diagram_hu_5b7da8d454f24e04.jpg\"\n          alt=\"文字樹狀圖常用符號與模板範例\"\n        /\u003e\n  \n  \n  \u003c/figure\u003e\n快速複製常用的文字樹狀圖模板與符號，\u003cbr\u003e\n用於筆記、結構、文件整理等。\u003cbr\u003e\u003c/p\u003e","title":"【文字樹狀圖】常用符號與可複製模板（筆記、程式、結構整理）","type":"notes"},{"content":" ","date":"26260-40-269","externalUrl":null,"permalink":"/tc/resources/2026-calendar/","section":"資源","summary":"查看完整 2026 年曆與行事曆，快速查詢日期、星期及年度規劃。","title":"2026 年曆","type":"resources"},{"content":" Hugo搭配Blowfish主題的語法，\n大致分成：\nHTML語法：寫模板、樣式，最通用\nMD語法：常用於index.md內頁，簡便\nBlowfish 簡碼：Blowfish主題整理的GO語法\n常用語法 # 標註\n# \u0026lt;!-- --\u0026gt; 換行\n# \u0026lt;br\u0026gt; 程式碼\n# 用👉`👈左右框住\n```go ```markdown ```html 插入圖片\n# 在 Hugo 中， Page Bundle 圖片的相對路徑要注意規則。\n資料夾裡必須要有一個 index.md (・ω・、)\n若只有 index.zh-tw.md Page Bundle會無法成立，圖片破光光 (つд`ﾟ)･ﾟ･\ncontent/文章資料夾/ ├─ index.md # 必須存在，可以是空白檔案 ├─ index.zh-tw.md └─ images/Export_UV_Layout.png 文章資料夾內同時要有\nindex.md index.zh-tw.md images 資料夾\nMD寫法是 ![圖片說明](圖片相對位置)\n![Export UV Layout](images/Export_UV_Layout.png) MD的寫法會強制滿版、圓角，\n若圖片寬度低於 602px，使用MD寫法將會導致圖片模糊\nfigure 寫法的 default=true 能解除強制滿版、圓角，以原尺寸、直角顯示圖片。\n不過 figure 寫法無法放入程式碼框，會強制啟動插入圖片，因此拆成\n{{ 與 \u0026lt; figure...\u0026gt; 與 }} 之間無空格\n{{之間的}}語法如下： \u0026lt; figure src=\u0026#34;images/ExampleImage.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; \u0026gt; \u0026lt; figure src=\u0026#34;images/ExampleImage.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true \u0026gt; id內文跳轉\n# 手動指定目標 id：{#3d}\n跳轉連結寫法：[連結文字](#3d)\n有時候主題或瀏覽器對中文 id 會有問題，所以在標題手動指定 id：\n## 3D筆記 {#3d} ## 架站筆記 {#site} 固定 id 名稱後，再用：\n[3D](#3d)、[架站](#site) 連結\n# [顯示文字](https://sample/go/) 預設會另開視窗\nHTML語法 # 標註\n# \u0026lt;!-- --\u0026gt; 程式碼\n# 用👉`👈左右框住\n換行\n# \u0026lt;br\u0026gt; MD語法 # 官方文檔 # Blowfish Markdown 示例 | Github 範例文章\n連結\n# [顯示文字](https://sample/go/) 預設會另開視窗\nBlowfish 簡碼 # 官方文檔 # Hugo 簡碼 | Blowfish 簡碼\n頁面連結\n# [顯示文字]({{ }}) 同視窗內跳轉\n({{ }})內是\u0026lt; ref \u0026quot;/目標位置\u0026quot; \u0026gt; 強制觸發，用程式碼框也沒用！\n‼️找不到目標時，會整個網站出不出來！慎用‼️\n","date":"5050-20-59","externalUrl":null,"permalink":"/tc/notes/dev/web/cheatsheet-hugo-blowfish/","section":"筆記","summary":"整理 Hugo 搭配 Blowfish 主題使用的Markdown、html等語法","title":"Hugo Blowfish 常用語法速查","type":"notes"},{"content":" figure簡碼寫法 / MD寫法\n圖片的資料夾結構 # 在 Hugo 中， Page Bundle 圖片的相對路徑要注意規則。\n資料夾裡必須要有一個 index.md (・ω・、)\n若只有 index.zh-tw.md 或其他語言的index\nPage Bundle會無法辨識，導致無法抓取，圖片破光光 (つд`ﾟ)･ﾟ･\ncontent/文章資料夾/ ├─ index.md # 必須存在，可以是空白檔案 ├─ index.zh-tw.md └─ images/ImageExample.png 文章資料夾內同時要有\nindex.md index.zh-tw.md images 資料夾\n插入圖片 # MD 寫法 # MD寫法是 ![圖片說明](圖片相對位置)\n![Alt text](images/ImageExample.png) 也支援 \u0026quot;caption圖片下方小標題\u0026quot;\n![Alt text](images/ImageExample.png \u0026#34;Image caption\u0026#34;) ↑原圖片寬度=1978 px ↑原圖片寬度=490 px MD的寫法會強制滿版、圓角，\n若圖片寬度低於 660px，\n使用MD寫法會讓圖片被強制拉寬，導致模糊 (如寬度=490 px圖片)\n並且圖片點開後，也是被Blowfish主題壓縮後的尺寸，\n若有高解析、客製化的圖片需求，建議使用 figure簡碼寫法 figure 簡碼寫法 # figure 寫法的 default=true 能解除強制滿版、圓角，\n以原尺寸、直角顯示圖片。 不過 figure 寫法無法放入程式碼框，會強制啟動插入圖片，因此拆成\n{{與\u0026lt; figure...\u0026gt;與}}之間無空格\n{{之間的}}語法如下： \u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true caption=\u0026#34;↑點開來會比MD寫法更清晰\u0026#34; \u0026gt; {{}}\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; \u0026gt; ↑點開來會比MD寫法更清晰\n↑不會被強制滿版\n個人認為 figure簡碼寫法會比 MD寫法\n更適合圖片作品展示、截圖多的筆記\n相關參數 # default=true # default=true figure寫法沒有 [V]default=true ，效果就和MD寫法差不多\nBlowfish主題會讓圖片套用 Hugo原生參數，如 width等\nfigure default=true → Hugo原生參數、Blowfish主題參數失效 figure 沒有 default=true = MD寫法 → Hugo原生參數失效、Blowfish主題參數為主 以下用 [ v / x ] default=true 表示能否運用於 default=true Hugo原生參數\n用 [ v / x ] Blowfish主題預設 表示能否運用於Blowfish主題預設\nwidth # [v] default=true [x] Blowfish主題預設 用 width=\u0026quot;圖片寬度px值\u0026quot; 可以指定圖片寬度\nwidth=\u0026#34;330\u0026#34; \u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true width=\u0026#34;330\u0026#34; caption=\u0026#34;↑width=330\u0026#34; \u0026gt; ↑width=330\n圖片置中 # [v] default=true [x] Blowfish主題預設 圖片會預設置左\n用 class=\u0026quot;flex justify-center\u0026quot; 可以使圖片置中\nclass=\u0026#34;flex justify-center\u0026#34; \u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true width=\u0026#34;330\u0026#34; class=\u0026#34;flex justify-center\u0026#34; \u0026gt; caption=\u0026quot;圖片說明\u0026quot; 會跑位\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true width=\u0026#34;330\u0026#34; class=\u0026#34;flex justify-center\u0026#34; caption=\u0026#34;←圖片置中，但caption會跑位\u0026#34; \u0026gt;}} ←圖片置中，但caption會跑位\n沒 default=true ，圖片用 class=\u0026quot;flex justify-center\u0026quot; 置中會沒用\n並且 width參數 也會失效\n需 自定義CSS ，下圖使用 w-custom-330\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; class=\u0026#34;flex justify-center w-custom-330\u0026#34; caption=\u0026#34;↑沒有default=true而失效的圖片置中\u0026#34; \u0026gt; ↑沒有default=true而失效的圖片置中 自定義CSS # 到以下路徑新增或修改 custom.css\nD:\\[project_folder]\\themes\\blowfish\\assets\\css 需在 params.toml 中 (路徑：D:\\[project_folder]\\config\\_default\\)\n設定能讀取 custom.css 加入以下程式碼：\n[params.custom] css = [\u0026#34;css/custom.css\u0026#34;] 自訂寬度css # default=true 的圖片可以用 width參數 來自訂寬度\n而沒有 default=true 圖片寬度會被 Blowfish主題 綁的很死、限寬660px\n需自定義CSS突破限制\n在 custom.css 中寫下\n/* 自訂寬度 */ .w-custom-770 { width: 770px !important; max-width: none !important; } 文章內的figure寫法 class參數加上 w-custom-770\nclass=\u0026#34;w-custom-770\u0026#34; 下圖 w-custom-770 示例程式碼：\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; class=\u0026#34;mx-auto w-custom-770\u0026#34; \u0026gt;}} ↓這張 w-custom-770 示例 沒有 default=true ↑沒有 default=true Blowfish主題自帶圓角\n並且點開之後的解析度會比 default=true 還差\n但是不點開放大的顯示效果是好的\n並且自定義CSS視窗縮小時圖片不會變小\n可搭配 nozoom 禁用圖片點開放大檢視\nnozoom # 禁用圖片點開放大檢視\n需注意這是 Blowfish主題預設的\n[x] default=true [v] Blowfish主題預設 nozoom=true \u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; class=\u0026#34;mx-auto w-custom-770\u0026#34; nozoom=true caption=\u0026#34;↑`nozoom=true` 套用給上張 `w-custom-770` 示例，沒有 `default=true`\u0026#34; \u0026gt;}} ↑nozoom=true 套用給上張 w-custom-770 示例，沒有 default=true 而nozoom=true 套用給有 default=true + width=\u0026quot;770\u0026quot; 會失效\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true width=\u0026#34;770\u0026#34; nozoom=true caption=\u0026#34;↑在 `default=true` 的情況下，`nozoom=true` 會失效\u0026#34; \u0026gt;}} ↑在 default=true 的情況下，nozoom=true 會失效\nclass=\u0026quot;nozoom\u0026quot; 也會失效，\n需自定義CSS給 default=true 圖片以實現 nozoom 的功能\ndefault=true 圖片實現 nozoom # 參考 自定義CSS的做法，\n在 custom.css 中寫下\n/* 自訂 nozoom img， */ /* 這邊取名為「th-nozoom」 */ /* class名稱前面要有1個. */ .th-nozoom img { /* 防止圖片被點擊放大 */ pointer-events: none; /* 確保圖片顯示正常 */ -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; /* 防止拖拽 */ -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; } 在文章中使用該自定義CSS class\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true class=\u0026#34;th-nozoom\u0026#34; \u0026gt; ↑在 default=true 的情況下，套用自定義CSS th-nozoom\ndefault=true 圖片實現 rounded-md # 直接對 default=true 圖片下 class=\u0026quot;rounded-md\u0026quot;沒用， 圖片依然是直角\n我用 F12 檢查，發現應該是 rounded-md 是套用在 \u0026lt;figure\u0026gt;標籤上，\n需 自定義CSS，\n把 \u0026lt;figure\u0026gt;標籤的 rounded-md 傳遞給內部的 \u0026lt;img\u0026gt;標籤\n/* 讓 figure 的 rounded-md 傳遞給內部的 img */ figure.rounded-md img { border-radius: 0.375rem; /* rounded-md 的值 */ } 在文章內使用\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; default=true width=\u0026#34;330\u0026#34; class=\u0026#34;rounded-md\u0026#34; caption=\u0026#34;↑`default=true` 自定義CSS後使用 `rounded-md` 點開來會是直角、畫質清晰\u0026#34; \u0026gt; ↑default=true 自定義CSS後使用 rounded-md 點開來會是直角、畫質清晰\n而無 default=true 則自帶 rounded-md\n\u0026lt; figure src=\u0026#34;images/ImageExample.png\u0026#34; alt=\u0026#34;Example Image\u0026#34; class=\u0026#34;w-custom-330\u0026#34; caption=\u0026#34;↑無 `default=true`自帶 `rounded-md` 點開來會是圓角、畫質模糊\u0026#34; \u0026gt; ↑無 default=true自帶 rounded-md 點開來會是圓角、畫質模糊 ","date":"5050-20-59","externalUrl":null,"permalink":"/tc/notes/dev/web/images-in-content/","section":"筆記","summary":"深入解析 Blowfish 主題的圖片路徑設定，以及如何利用內建功能優化圖片載入速度與視覺效果。","title":"Hugo Blowfish 文章圖片設定","type":"notes"},{"content":" 步驟提要 # 複製原專案資料夾、更名 移除新專案 舊Git遠端連結 上傳新專案到 GitHub，建立新 repository 忽略 /hugo.exe、/public/、/resources 連結到新的 GitHub repository\n→若忘記忽略→ 4.5. 補忽略+刪除 驗證 部屬新專案 1. 複製專案資料夾 # # 在專案的上層目錄執行 robocopy [原資料夾名] [新資料夾名] /MIR 完成後會得到：\n專案上層目錄 ├── [原資料夾] └── [新資料夾] 或 git clone\n2. 移除新專案 舊Git遠端連結 # 進入新專案：\ncd [新資料夾] 刪掉舊 repo 的 .git：\nrmdir /S /Q .git 這樣就不會帶到：\n舊 commit 舊 remote 舊 branch 舊 GitHub repo 連結 初始化新的 Git 專案：\ngit init 建立主分支：\ngit branch -M main 3. 在 GitHub 上建立新的 repository # 前往 GitHub 網站 點擊右上角的 \u0026ldquo;+\u0026rdquo; → \u0026ldquo;New repository\u0026rdquo; Repository name 填入：[新資料夾名] 選擇 Public 或 Private 不要勾選 \u0026ldquo;Initialize this repository with a README\u0026rdquo; 點擊 \u0026ldquo;Create repository\u0026rdquo; 4. .gitignore 設定忽略 # 從 GitHub Desktop 設定\nGitHub Desktop → Repository → Repository settings...\n在 Ignored files 中，輸入/hugo.exe、/public/、/resources\n或 對檔案點選右鍵 → 選單 → Ignored file 在 Ignored files 中，輸入/hugo.exe、/public/、/resources\n5. 連結到新的 GitHub repository # # 添加新的遠端連結 git remote add origin https://github.com/[帳號]/[新資料夾名].git # 推送到新的 repository git push -u origin main 注意：如果預設分支是 master 而非 main，請將上面的 main 改成 master。可以用 git branch 查看目前的分支名稱。\n4.5. 補忽略+刪除 # 若發現上傳到/hugo.exe、/public/、/resources/ 則需 先停止 git追蹤，再刪除雲端檔案\n停止追蹤 hugo.exe 和 public/ # # 1. 從 Git 追蹤中移除（但保留本地檔案） git rm --cached hugo.exe git rm -r --cached public/ git rm -r --cached resources/ # 2. 確認 .gitignore 內容正確 # 應該包含： # hugo.exe # /public/ # /resources/ # 若不正確 → 執行步驟4. 從GitHub Desktop中設定忽略 # 3. 提交這個「停止追蹤」的變更 git add .gitignore git commit -m \u0026#34;Stop tracking hugo.exe, public and resource folder\u0026#34; # 4. 推送到 GitHub git push 從 GitHub 刪除這些檔案 # 上面的 git push 就已經完成刪除了！因為：\ngit rm --cached = 告訴 Git「不要再追蹤這些檔案」 git commit + git push = 把這個「刪除追蹤」的動作同步到 GitHub GitHub 上的 hugo.exe 和 public/ 會被移除 驗證是否成功 # # 檢查本地狀態 git status # 應該顯示：working tree clean # hugo.exe 和 public/ 以及 resources/ 不應該出現在列表中 # 檢查 GitHub # 去 GitHub repo 頁面看，hugo.exe 和 public/ 以及 resources/ 應該消失了 預期結果 # 本地：hugo.exe 和 public/ 以及 resources/ 資料夾還在，可以正常使用 Git：不再追蹤這些檔案 GitHub：這些檔案會被刪除 之後：無論怎麼修改這些檔案，都不會被 Git 偵測到 6. 驗證 # # 確認遠端連結 git remote -v 應該會看到：\norigin https://github.com/[帳號]/[新資料夾名].git (fetch) origin https://github.com/[帳號]/[新資料夾名]5.git (push) 完成後，就有兩個獨立的專案了：\n[原資料夾名] → 連結到舊的 GitHub repo [新資料夾名] → 連結到新的 GitHub repo 7. 部屬新專案 # 到： Cloudflare Dashboard\nWorkers 和 Pages [+] 建立應用程式\n選 Pages\n連接 GitHub repo\n若無顯示 repo 則需依指示設定 GitHub 應用程式的存取權限 組件設定 # Framework 預設\n無 組件命令\nhugo 組件輸出目錄\n/public 環境變數\n變數名稱HUGO_VERSION = 0.1420\n可於 cmd 中輸入\nhugo version 確認使用的 Hugo 版本\n","date":"3030-100-39","externalUrl":null,"permalink":"/tc/notes/dev/web/copy-project-folder/","section":"筆記","summary":"逐步記錄如何更新備份 Hugo 專案","title":"Hugo 專案更新與部署流程","type":"notes"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/3d/","section":"Tags","summary":"","title":"3D","type":"tags"},{"content":"3D、Blender相關筆記集中\n","date":"9090-50-99","externalUrl":null,"permalink":"/tc/notes/3d/","section":"筆記","summary":"\u003cp\u003e3D、Blender相關筆記集中\u003c/p\u003e\n\u003chr\u003e","title":"3D 筆記","type":"notes"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/auto-rig-pro/","section":"Tags","summary":"","title":"Auto-Rig Pro","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/blender/","section":"Tags","summary":"","title":"Blender","type":"tags"},{"content":" 簡介 # Auto-Rig Pro 為 Blender 綁定插件\n本篇簡稱為ARP\n官方doc外連：ARP官方doc｜Smart 智能綁定\n本篇流程跳轉：\n模型整理 / 身體綁定 / 面部 / Rig Layers\n概要流程 # 模型整理 ├─ 角色正面 -Y軸 ├─ Scale = 1 ├─ 檢查法線 ├─ 清理多餘 Mesh └─ 合併 Modifier 修改器 --\u0026gt;\u0026gt; 細分面、實體化可留 Auto-Rig Pro 身體綁定 ├─ Smart → Get Selecttd Objects 先身體 ├─ 放置標記點 ├─ 修改標記點 → 生成參考骨 -----\u0026gt;\u0026gt; ↓來回 ├─ Match to Rig → 生成控制器 --\u0026gt;\u0026gt; ↑來回 └─ Bind 身體 面部 模型整理 # ARP 用 Smart 智能綁定\n角色正面必須是 -Y軸\n若物件拆很細，可分別選物件 -\u0026gt; 選控制器 -\u0026gt; Bind\n善用 Tool 頁籤的 Rig Layers\n分組控制器\nARP 控制器很多，不能綁給 CSP當素材\nCSP 素體素材，自架骨架簡單骨架，映射給CSP內建的 rig 系統\n並且 CSP 角色模型面朝 +Y軸\nARP 以 Blender 內製作動態為主\n身體綁定 # 選取模型後，Get Selected Objects 放置標記點\n點此展開截圖：放置標記點 從Neck開始 調整記號 → 生成參考骨\n點此展開截圖：調整記號 → 生成參考骨 記號擺好可以3D調整 按 Go! 生成參考骨\n參考骨 ←→ 控制器：切換操作 參考骨 → 控制器：Match to Rig 控制器 → 參考骨：Edit Reference Bones 參考骨 ←→ 控制器 \u0026ndash;\u0026raquo; 來回調整\nIK 控制器調整 [V] Show IK Directions 勾選後會顯示綠線，可以確認控制器 IK 的位置 Edit Mode Global 旋轉可調整 IK 控制器方向 Bind 綁定身體\n面部 # 面綁官方doc\n面部記號放 y=0 平面即可，\nARP會以 -y為正面 自動捕捉角色五官位置生成面部骨架\n不用特別對角色立體的五官，我初學時對過，然後就報錯了\n面部記號 牙齒、舌頭等，若有勾選，\n但生成參考骨時，沒抓到物件（如截圖 [v]Tonegue）\n沒抓到物件會報錯 ARP會報錯，並生成錯誤的骨骼擾亂流程\n務必確認並存檔\n骨位置修正 # ARP大概會抓不到非球形眼球的位置\n所以要手動調整\n眼骨位置修正 眼主骨是\neye_offset_ref.l 子集是 eyelid 系列 追加調整 # 選個別骨，如 head、spine 等，\n按 Rig 面板上的 Limb Options 進入設定\n選頭骨之後，按 Rig 面板上的 Limb Options 進入設定\nEyelids Tweak Controllers Lips Offset Controller Sticky Lips Rig Layers # Rig Layers ","date":"9090-50-99","externalUrl":null,"permalink":"/tc/notes/3d/blender-auto-rig-pro/","section":"筆記","summary":"整理 Blender 插件 Auto-Rig Pro 智能綁定（Smart）的簡要流程，以及遇到的錯誤與排查方式。","title":"Blender Auto-Rig Pro 智能綁定（Smart）流程與錯誤排查筆記","type":"notes"},{"content":"","date":"99 Oct 9090","externalUrl":null,"permalink":"/tags/notes/","section":"Tags","summary":"","title":"Notes","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/rigging/","section":"Tags","summary":"","title":"Rigging","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/","section":"Tags","summary":"","title":"Tags","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/","section":"Thita希達的創作便利貼","summary":"","title":"Thita希達的創作便利貼","type":"page"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/ja/tags/%E3%83%A1%E3%83%A2/","section":"Tags","summary":"","title":"メモ","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/ja/tags/%E3%83%AA%E3%82%AE%E3%83%B3%E3%82%B0/","section":"Tags","summary":"","title":"リギング","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/sc/tags/%E7%AC%94%E8%AE%B0/","section":"Tags","summary":"","title":"笔记","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/%E7%AD%86%E8%A8%98/","section":"Tags","summary":"","title":"筆記","type":"tags"},{"content":"創作 / 3D / 架站\n創作筆記 # 【文字樹狀圖】常用符號與可複製模板（筆記、程式、結構整理） 創作 樹狀圖 模板 Tree Diagram 筆記 3D 筆記 # Blender Auto-Rig Pro 智能綁定（Smart）流程與錯誤排查筆記 Blender Auto-Rig Pro Rigging 3D 綁定 筆記 架站筆記 # 自架網站相關，以Hugo搭配Blowfish主題為主 Hugo Blowfish 常用語法速查 Web Hugo Blowfish 語法 筆記 Hugo Blowfish 文章圖片設定 Web Hugo Blowfish 圖片 語法 筆記 Hugo 專案更新與部署流程 Web Hugo Git 部署 語法 筆記 ","date":"9090-50-99","externalUrl":null,"permalink":"/tc/notes/","section":"筆記","summary":"創作、3D、架站相關筆記整理。","title":"筆記","type":"notes"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/tc/tags/%E7%B6%81%E5%AE%9A/","section":"Tags","summary":"","title":"綁定","type":"tags"},{"content":"","date":"9090-50-99","externalUrl":null,"permalink":"/sc/tags/%E7%BB%91%E5%AE%9A/","section":"Tags","summary":"","title":"绑定","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/creative/","section":"Tags","summary":"","title":"Creative","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/template/","section":"Tags","summary":"","title":"Template","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/tree-diagram/","section":"Tags","summary":"","title":"Tree Diagram","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/ja/tags/%E3%83%84%E3%83%AA%E3%83%BC%E5%9B%B3/","section":"Tags","summary":"","title":"ツリー図","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/ja/tags/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88/","section":"Tags","summary":"","title":"テンプレート","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/sc/tags/%E5%88%9B%E4%BD%9C/","section":"Tags","summary":"","title":"创作","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/%E5%89%B5%E4%BD%9C/","section":"Tags","summary":"","title":"創作","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/sc/tags/%E6%A0%91%E7%8A%B6%E5%9B%BE/","section":"Tags","summary":"","title":"树状图","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/%E6%A8%A1%E6%9D%BF/","section":"Tags","summary":"","title":"模板","type":"tags"},{"content":"","date":"3030-50-39","externalUrl":null,"permalink":"/tc/tags/%E6%A8%B9%E7%8B%80%E5%9C%96/","section":"Tags","summary":"","title":"樹狀圖","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/deployment/","section":"Tags","summary":"","title":"Deployment","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/git/","section":"Tags","summary":"","title":"Git","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/hugo/","section":"Tags","summary":"","title":"Hugo","type":"tags"},{"content":"","date":"39 Oct 3030","externalUrl":null,"permalink":"/tags/syntax/","section":"Tags","summary":"","title":"Syntax","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/web/","section":"Tags","summary":"","title":"Web","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/ja/tags/%E3%83%87%E3%83%97%E3%83%AD%E3%82%A4/","section":"Tags","summary":"","title":"デプロイ","type":"tags"},{"content":"自架網站相關，以Hugo搭配Blowfish主題為主\n","date":"3030-100-39","externalUrl":null,"permalink":"/tc/notes/dev/web/","section":"筆記","summary":"\u003cp\u003e自架網站相關，以Hugo搭配Blowfish主題為主\u003c/p\u003e\n\u003chr\u003e","title":"架站筆記","type":"notes"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/ja/tags/%E6%A7%8B%E6%96%87/","section":"Tags","summary":"","title":"構文","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/%E8%AA%9E%E6%B3%95/","section":"Tags","summary":"","title":"語法","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/sc/tags/%E8%AF%AD%E6%B3%95/","section":"Tags","summary":"","title":"语法","type":"tags"},{"content":"","date":"3030-100-39","externalUrl":null,"permalink":"/tc/tags/%E9%83%A8%E7%BD%B2/","section":"Tags","summary":"","title":"部署","type":"tags"},{"content":"","date":"269 Oct 26260","externalUrl":null,"permalink":"/tags/calendar/","section":"Tags","summary":"","title":"Calendar","type":"tags"},{"content":"","date":"269 Oct 26260","externalUrl":null,"permalink":"/tags/daily-tools/","section":"Tags","summary":"","title":"Daily Tools","type":"tags"},{"content":"","date":"269 Oct 26260","externalUrl":null,"permalink":"/tags/web-tools/","section":"Tags","summary":"","title":"Web Tools","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/ja/tags/web%E3%83%84%E3%83%BC%E3%83%AB/","section":"Tags","summary":"","title":"Webツール","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/ja/tags/%E3%82%AB%E3%83%AC%E3%83%B3%E3%83%80%E3%83%BC/","section":"Tags","summary":"","title":"カレンダー","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/sc/tags/%E5%88%9B%E4%BD%9C%E8%B5%84%E6%BA%90/","section":"Tags","summary":"","title":"创作资源","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E5%89%B5%E4%BD%9C%E8%B3%87%E6%BA%90/","section":"Tags","summary":"","title":"創作資源","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/sc/tags/%E5%B9%B4%E5%8E%86/","section":"Tags","summary":"","title":"年历","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E5%B9%B4%E6%9B%86/","section":"Tags","summary":"","title":"年曆","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/ja/tags/%E6%97%A5%E5%B8%B8%E3%83%84%E3%83%BC%E3%83%AB/","section":"Tags","summary":"","title":"日常ツール","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E6%97%A5%E5%B8%B8%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"日常工具","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E7%B4%A0%E6%9D%90/","section":"Tags","summary":"","title":"素材","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E7%B6%B2%E9%A0%81%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"網頁工具","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/tc/tags/%E7%B7%9A%E4%B8%8A%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"線上工具","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/sc/tags/%E7%BA%BF%E4%B8%8A%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"线上工具","type":"tags"},{"content":"","date":"26260-40-269","externalUrl":null,"permalink":"/sc/tags/%E7%BD%91%E9%A1%B5%E5%B7%A5%E5%85%B7/","section":"Tags","summary":"","title":"网页工具","type":"tags"},{"content":"日常工具 / 素材\n日常工具 # 2026 年曆 年曆 網頁工具 日常工具 素材 # CSP素材 3D女性素體 素材 ","date":"26260-40-269","externalUrl":null,"permalink":"/tc/resources/","section":"資源","summary":"收錄網站工具、創作素材與實用資源，方便快速查找與使用。","title":"資源","type":"resources"},{"content":"","date":"5050-20-59","externalUrl":null,"permalink":"/tc/tags/blowfish/","section":"Tags","summary":"","title":"Blowfish","type":"tags"},{"content":"","date":"59 Oct 5050","externalUrl":null,"permalink":"/tags/images/","section":"Tags","summary":"","title":"Images","type":"tags"},{"content":"","date":"5050-20-59","externalUrl":null,"permalink":"/sc/tags/%E5%9B%BE%E7%89%87/","section":"Tags","summary":"","title":"图片","type":"tags"},{"content":"","date":"5050-20-59","externalUrl":null,"permalink":"/tc/tags/%E5%9C%96%E7%89%87/","section":"Tags","summary":"","title":"圖片","type":"tags"},{"content":"","date":"5050-20-59","externalUrl":null,"permalink":"/ja/tags/%E7%94%BB%E5%83%8F/","section":"Tags","summary":"","title":"画像","type":"tags"},{"content":" 關於 Thita希達 嗨！我是 Thita希達\n是一名數位創作者，\n喜歡美術、漫畫、3D與各種技術。\n嚮往被創作與筆記環繞的生活。\n擅長使用3D結合電繪呈現想像中的畫面。\n現為接案工作者，有漫畫、遊戲美術方面的經驗。\n曾任條漫人物作畫、遊戲公司3D美術、漫畫助手。\n美術方面，主要使用CSP與Blender，不使用AI。\nAI使用在翻譯、程式，以及語言學習方面。\n經歷了社群帳號被刪、硬碟壞掉之後，對突發狀況深感敬畏，而自學技術架設了本網站：Thita希達的創作便利貼，用科技魔法召喚的賽博書櫃，會放一些筆記、創作、工具與素材等，歡迎瀏覽使用。 追蹤Thita希達 # ","date":"4040-20-49","externalUrl":null,"permalink":"/tc/about/","section":"","summary":"\u003ch4 class=\"text-primary-600 dark:text-secondary-100\"\u003e\n關於\u003c/h4\u003e\n\u003cdiv class=\"mt-0 text-2xl font-extrabold text-neutral-900 dark:text-neutral\"\u003e\n  Thita希達\n\u003c/div\u003e\n\u003cbr\u003e\n嗨！我是 \u003cdiv class=\"font-extrabold text-primary-700 dark:text-neutral-200 inline\"\u003eThita希達\u003c/div\u003e\u003cbr\u003e\n是一名數位創作者，\u003cbr\u003e\n喜歡美術、漫畫、3D與各種技術。\u003cbr\u003e\n\u003cbr\u003e\n嚮往被創作與筆記環繞的生活。\u003cbr\u003e\n擅長使用3D結合電繪呈現想像中的畫面。\u003cbr\u003e\n\u003cbr\u003e\n現為接案工作者，有漫畫、遊戲美術方面的經驗。\u003cbr\u003e\n曾任條漫人物作畫、遊戲公司3D美術、漫畫助手。\u003cbr\u003e\n\u003cbr\u003e\n美術方面，主要使用CSP與Blender，不使用AI。\u003cbr\u003e\nAI使用在翻譯、程式，以及語言學習方面。\u003cbr\u003e\n\u003cbr\u003e\n經歷了社群帳號被刪、硬碟壞掉之後，對突發狀況深感敬畏，而自學技術架設了本網站：\u003ca class=\"font-extrabold text-primary-700 dark:text-neutral-200 inline\"  href=\"/tc/\"\u003eThita希達的創作便利貼\u003c/a\u003e，用科技魔法召喚的賽博書櫃，會放一些筆記、創作、工具與素材等，歡迎瀏覽使用。\n\u003chr\u003e\n\n\n\u003ch2 class=\"relative group\"\u003e追蹤Thita希達 \n    \u003cdiv id=\"%E8%BF%BD%E8%B9%A4thita%E5%B8%8C%E9%81%94\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#%E8%BF%BD%E8%B9%A4thita%E5%B8%8C%E9%81%94\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://x.com/THITAart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n  \n    \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n      \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"/\u003e\u003c/svg\u003e\n    \u003c/span\u003e\n  \n\n\u003c/a\u003e\n\u003ca href=\"https://www.instagram.com/thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n  \n    \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n      \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"/\u003e\u003c/svg\u003e\n  \n    \u003c/span\u003e\n  \n\n\u003c/a\u003e\n\u003ca href=\"https://www.facebook.com/THITAart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\n\u003ca href=\"https://www.youtube.com/@thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 576 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\n\u003ca href=\"https://github.com/thitaart\" target=\"_blank\" class=\"inline-grid p-2 rounded-md\" \nstyle=\"font-size: 48px\"\u003e\n\n   \n     \u003cspan class=\"relative inline-block align-text-bottom icon\"\u003e\n       \u003csvg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 496 512\"\u003e\u003cpath fill=\"currentColor\" d=\"M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z\"/\u003e\u003c/svg\u003e\n   \n     \u003c/span\u003e\n   \n\n\u003c/a\u003e\u003c/p\u003e","title":"","type":"about"},{"content":"","date":"49 Oct 4040","externalUrl":null,"permalink":"/tags/%E5%85%B3%E4%BA%8E/","section":"Tags","summary":"","title":"关于","type":"tags"},{"content":"","date":"4040-20-49","externalUrl":null,"permalink":"/tc/tags/%E9%97%9C%E6%96%BC/","section":"Tags","summary":"","title":"關於","type":"tags"},{"content":"","date":"299 Oct 29290","externalUrl":null,"permalink":"/tags/commercial/","section":"Tags","summary":"","title":"Commercial","type":"tags"},{"content":"","date":"299 Oct 29290","externalUrl":null,"permalink":"/tags/webtoon/","section":"Tags","summary":"","title":"Webtoon","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/ja/tags/%E3%82%AF%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%83%88%E3%83%AF%E3%83%BC%E3%82%AF/","section":"Tags","summary":"","title":"クライアントワーク","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/ja/tags/%E3%82%BF%E3%83%86%E3%83%A8%E3%83%9F/","section":"Tags","summary":"","title":"タテヨミ","type":"tags"},{"content":"創作 / 商業\n創作 # 商業 # 條漫《不倫戰隊》 條漫 商業 漫畫3D製作《黑道甜點店》 3D製作 商業 ","date":"29290-60-299","externalUrl":null,"permalink":"/tc/art/","section":"作品","summary":"\u003cp\u003e\u003ca href=\"#art\"\u003e創作\u003c/a\u003e / \u003ca href=\"#commercial\"\u003e商業\u003c/a\u003e\u003c/p\u003e\n\u003c!--Thita 希達 的創作集中\u003cbr\u003e--\u003e\n\u003c!--[作品標題](#cve) / [條漫](#webtoons) / [美術](#art) / [3D](#3d) / [Lab](#lab)--\u003e\n\u003chr\u003e\n\u003c!-- 先放棄分類 --\u003e\n\n\n\u003ch2 class=\"relative group\"\u003e創作 \n    \u003cdiv id=\"art\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#art\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\u003c!-- ↓單tag選文章 --\u003e\n\u003c!-- \n\n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n        \n\n  \u003ca href=\"/tc/notes/text-tree-diagram/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/notes/text-tree-diagram/featured_hu_23a153a100206e48.jpg);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/notes/text-tree-diagram/\"\u003e【文字樹狀圖】常用符號與可複製模板（筆記、程式、結構整理）\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%89%B5%E4%BD%9C/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    創作\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E6%A8%B9%E7%8B%80%E5%9C%96/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    樹狀圖\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E6%A8%A1%E6%9D%BF/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    模板\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/tree-diagram/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    Tree Diagram\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E7%AD%86%E8%A8%98/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    筆記\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n\u003c/section\u003e\n\n --\u003e\n\n\n\u003cdiv id=\"gallery-77fbe1950213e7ebd253b3de02dc33d5\" class=\"gallery\"\u003e\n  \n  \u003cimg src=\"/img/ThitaCreatorClips_Cover.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/img/profile_picture_md_thitaart.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/studio_background_image_thta.jpg\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \n  \u003cimg src=\"/art/images/thita-avatar-character-concept_0302-26_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/character-concept_emon_1011-23_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \n  \u003cimg src=\"/art/images/character-styleframe_0707-2024_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n\n  \u003cimg src=\"/art/images/3d-colored-manga-scene-windmill.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n  \u003cimg src=\"/art/images/character-styleframe_0419-24_thita.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e\n\n\u003c/div\u003e\n\u003c!-- 畫廊棄圖 --\u003e\n\u003c!-- \u003cimg src=\"/art/3d-scene/images/bw-3d-comic-scene-mansion.png\" class=\"grid-w50 md:grid-w33 xl:grid-w25\" /\u003e --\u003e\n\u003c!--## 個人主視覺：便利貼工作室 {#web-visuals}--\u003e\n\u003c!-- 單article\n\u003c!--\n\u003csection class=\"space-y-10 w-full\"\u003e\n    \n    \n\u003c/section\u003e--\u003e\n\u003c!-- list--tags\n\n\n\n\n\n\n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n\u003c/section\u003e\n\n--\u003e\n\u003c!--## 創作 {#art}--\u003e\n\u003c!--美術創作--\u003e\n\u003c!--\n\n\n\n\n\n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n\u003c/section\u003e\n\n--\u003e\n\u003c!-- \u003cdiv style=\"margin-top: 1.5rem;\"\u003e\n  \u003cstyle\u003e\n    .custom-hover-btn:hover { background-color: rgb(186, 148, 134) !important; }   \n    .dark .custom-hover-btn:hover { background-color: rgb(142, 106, 94) !important; }  \n  \u003c/style\u003e\n  \u003ca class=\"custom-hover-btn rounded-lg inline-block px-4 py-2 bg-neutral-300 dark:bg-neutral-700 text-white transition-all duration-200 !no-underline\"\n    href=\"/tc/notes/3d/\"\n    \n    \n    role=\"button\"\n    style=\"border-radius: 0.5rem !important;\"\n  \u003e\n    \n更多 3D 筆記 文章 →\n\n  \u003c/a\u003e\n\u003c/div\u003e\n --\u003e\n\u003chr\u003e\n\n\n\u003ch2 class=\"relative group\"\u003e商業 \n    \u003cdiv id=\"commercial\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#commercial\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\n\n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n        \n\n  \u003ca href=\"/tc/art/commercial/furin-sentai/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/art/commercial/furin-sentai/featured_hu_8920be238ab23dea.png);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/art/commercial/furin-sentai/\"\u003e條漫《不倫戰隊》\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E6%A2%9D%E6%BC%AB/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    條漫\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%95%86%E6%A5%AD/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    商業\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n        \n\n  \u003ca href=\"/tc/art/commercial/gun-cake-or-me-3d-scene/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/art/commercial/gun-cake-or-me-3d-scene/featured_hu_81b219864aefd939.jpg);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/art/commercial/gun-cake-or-me-3d-scene/\"\u003e漫畫3D製作《黑道甜點店》\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/3d%E8%A3%BD%E4%BD%9C/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    3D製作\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%95%86%E6%A5%AD/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    商業\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n\u003c/section\u003e\n\n\n\u003c!--article無法顯示摘要showSummary=true失效\n\n\u003csection class=\"space-y-10 w-full\"\u003e\n    \n    \n        \n            \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \u003ca class=\"flex flex-wrap article border border-neutral-200 dark:border-neutral-700 border-2 rounded-md overflow-hidden\" href=\"/tc/art/commercial/furin-sentai/\"\u003e\n    \n        \n        \u003cdiv class=\"w-full md:w-auto h-full thumbnail nozoom \" style=\"background-image:url(/art/commercial/furin-sentai/featured_hu_8920be238ab23dea.png);\"\u003e\u003c/div\u003e\n        \n      \u003cdiv class=\" p-4\"\u003e\n      \u003cdiv class=\"items-center text-left text-xl font-semibold\"\u003e\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/art/commercial/furin-sentai/\"\u003e條漫《不倫戰隊》\u003c/div\u003e\n        \n        \n        \n      \u003c/div\u003e\n      \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n        \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E6%A2%9D%E6%BC%AB/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    條漫\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%95%86%E6%A5%AD/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    商業\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n      \u003c/div\u003e\n      \n    \u003c/div\u003e\n  \u003c/a\u003e\n\n        \n    \n\u003c/section\u003e\n--\u003e\n\u003c!--Lab 隱藏--\u003e\n\u003c!--\n## Lab {#lab}\n其他創作\n\n\n\n\n\n\n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n    \n    \n        \n        \n            \n        \n    \n        \n        \n            \n        \n    \n    \n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n\u003c/section\u003e\n\n\n\n\u003c!-- \u003cdiv style=\"margin-top: 1.5rem;\"\u003e\n  \u003cstyle\u003e\n    .custom-hover-btn:hover { background-color: rgb(186, 148, 134) !important; }   \n    .dark .custom-hover-btn:hover { background-color: rgb(142, 106, 94) !important; }  \n  \u003c/style\u003e\n  \u003ca class=\"custom-hover-btn rounded-lg inline-block px-4 py-2 bg-neutral-300 dark:bg-neutral-700 text-white transition-all duration-200 !no-underline\"\n    href=\"/tc/notes/dev/web/\"\n    \n    \n    role=\"button\"\n    style=\"border-radius: 0.5rem !important;\"\n  \u003e\n    \n更多 架站筆記 →\n\n  \u003c/a\u003e\n\u003c/div\u003e\n --\u003e\n\u003c!-- ## 合作 {#collaboration} --\u003e","title":"作品","type":"art"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/sc/tags/%E5%95%86%E4%B8%9A/","section":"Tags","summary":"","title":"商业","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/tc/tags/%E5%95%86%E6%A5%AD/","section":"Tags","summary":"","title":"商業","type":"tags"},{"content":" 商業 # 條漫《不倫戰隊》 條漫 商業 漫畫3D製作《黑道甜點店》 3D製作 商業 ","date":"29290-60-299","externalUrl":null,"permalink":"/tc/art/commercial/","section":"作品","summary":"\u003ch2 class=\"relative group\"\u003e商業 \n    \u003cdiv id=\"commercial\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#commercial\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h2\u003e\n\n\n\n\n\n\n\n\u003csection class=\"w-full grid gap-4 sm:grid-cols-2 md:grid-cols-3\"\u003e\n    \n        \n\n  \u003ca href=\"/tc/art/commercial/furin-sentai/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/art/commercial/furin-sentai/featured_hu_8920be238ab23dea.png);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/art/commercial/furin-sentai/\"\u003e條漫《不倫戰隊》\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E6%A2%9D%E6%BC%AB/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    條漫\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%95%86%E6%A5%AD/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    商業\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n        \n\n  \u003ca href=\"/tc/art/commercial/gun-cake-or-me-3d-scene/\" class=\"min-w-full\"\u003e\n    \n    \u003cdiv class=\"min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative\"\u003e\n        \n        \u003cdiv class=\"w-full thumbnail_card nozoom\" style=\"background-image:url(/art/commercial/gun-cake-or-me-3d-scene/featured_hu_81b219864aefd939.jpg);\"\u003e\u003c/div\u003e\n        \n      \n\n      \u003cdiv class=\"px-6 py-4\"\u003e\n\n        \n        \u003cdiv class=\"font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral\"\n          href=\"/tc/art/commercial/gun-cake-or-me-3d-scene/\"\u003e漫畫3D製作《黑道甜點店》\u003c/div\u003e\n        \n\n        \u003cdiv class=\"text-sm text-neutral-500 dark:text-neutral-400\"\u003e\n          \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n\n  \n  \n\u003c/div\u003e\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n\u003cdiv class=\"flex flex-row flex-wrap items-center\"\u003e\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/3d%E8%A3%BD%E4%BD%9C/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    3D製作\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \u003cspan style=\"margin-top:0.5rem\" class=\"mr-2\" onclick=\"window.open(\u0026#34;/tc/tags/%E5%95%86%E6%A5%AD/\u0026#34;,'_self');return false;\"\u003e\n    \u003cspan class=\"flex\" style=\"cursor: pointer;\"\u003e\n  \u003cspan class=\"rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400\"\u003e\n    商業\n  \u003c/span\u003e\n\u003c/span\u003e\n  \u003c/span\u003e\n  \n  \n  \n  \n\u003c/div\u003e\n\n\n\n\n        \u003c/div\u003e\n\n        \n      \u003c/div\u003e\n      \u003cdiv class=\"px-6 pt-4 pb-2\"\u003e\n\n      \u003c/div\u003e\n    \u003c/div\u003e\n  \u003c/a\u003e\n\n    \n\u003c/section\u003e","title":"商業","type":"art"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/sc/tags/%E6%9D%A1%E6%BC%AB/","section":"Tags","summary":"","title":"条漫","type":"tags"},{"content":"","date":"29290-60-299","externalUrl":null,"permalink":"/tc/tags/%E6%A2%9D%E6%BC%AB/","section":"Tags","summary":"","title":"條漫","type":"tags"},{"content":" ■ 作品介紹 # 由日本電視台企劃與製作的條漫作品。\n故事以遭受怪人威脅的世界為背景，描繪隸屬於特殊戰隊的成員們為守護世界而戰的過程。\n然而，在戰隊體制之下，內部卻充斥著外遇、背叛與複雜的人際關係，\n呈現出結合英雄題材與職場情感劇的強烈戲劇張力。 ■ 製作名單 # 企劃原案：M.Marie 製作著作：日本テレビ 作畫：THITA希達／ontembaar 製作：NTV／ontembaar／プラス81 ©NTV\n【LINEマンガ】\nhttps://app-manga.line.me/app/periodic/S143030 ■ 發行資訊 # 上線日期：2024年6月29日 發行平台：LINEマンガ 更新頻率：每週六 ■ 負責內容 # 於本作中參與以下製作內容：\n角色設計 人物作畫 初期場景背景製作 ","date":"29290-60-299","externalUrl":null,"permalink":"/tc/art/commercial/furin-sentai/","section":"作品","summary":"參與日本電視台企劃條漫《不倫戰隊》的製作案例，負責角色設計、人物作畫與初期場景背景。","title":"條漫《不倫戰隊》","type":"art"},{"content":"","date":"12120-20-129","externalUrl":null,"permalink":"/sc/tags/3d%E5%88%B6%E4%BD%9C/","section":"Tags","summary":"","title":"3D制作","type":"tags"},{"content":"","date":"129 Oct 12120","externalUrl":null,"permalink":"/tags/3d%E5%A0%B4%E6%99%AF/","section":"Tags","summary":"","title":"3D場景","type":"tags"},{"content":"","date":"12120-20-129","externalUrl":null,"permalink":"/tc/tags/3d%E8%A3%BD%E4%BD%9C/","section":"Tags","summary":"","title":"3D製作","type":"tags"},{"content":" ■ 作品介紹 # 立志要行俠仗義的女警，踏進了黑道老大開的純素甜點店！ 黑道老大究竟在追夢，還是犯罪掩蓋？ 這是一部結合「黑道 × 女警 × 甜點店」的警匪喜劇，在蛋糕香氣與懸疑氣氛中，甜中帶笑、笑裡藏刀！ 立志要將飴灣第一大幫「松義盟」首腦繩之以法的女警，一步一步在香甜誘惑之下登上江湖盟主的傳奇故事，就此展開！ ■ 作者介紹 # 漫畫：陳小雅\n臺灣女性漫畫家，擅長創作人文方面的故事。大學畢業之際即創立「有橋漫畫工作室」，致力於建立好故事與讀者間的橋梁。曾獲 2016 新北市漫畫競賽首獎、2012 金漫獎新人佳作等。代表作有《四個初夏的藍天》、《KANO》、《風中的黑籽菜》等，近年作品多見於《CCC 追漫台》、《未來少年》、《未來兒童》等書刊。\n編劇：東默農\n1985 年生，屏東人。曾寫過的案型有電視劇、電影、舞台劇、漫畫、微電影等等，觸角多元。曾合作開課的知名單位有文化大學推廣部、青創總會、壹壹影業、Hahow 好學校、Yotta 友讀等。 現為接案編劇及編劇講師，全台最大編劇教學平台「東默農編劇」創辦人，持續撰寫編劇相關教學文章超過 10 年，原子編劇課創作陪跑課導師。從 2017 年至今，進行超過 150 門故事相關課程、講座、校園分享及企業內訓，其學員亦陸續在影劇界獲獎及推出作品。 ■ 連載資訊 # 上線日期：2024年2月12日 連載平台：CCC追漫台 更新頻率：雙週更，每隔週一 晚間八點更新 ■ 3D製作 # 於本作中參與以下製作內容：\n","date":"12120-20-129","externalUrl":null,"permalink":"/tc/art/commercial/gun-cake-or-me-3d-scene/","section":"作品","summary":"\u003cfigure class=\"th-nozoom\"\u003e\u003cimg src=\"/art/commercial/gun-cake-or-me-3d-scene/featured_02.jpg\"\n    alt=\"featured Image\" width=\"480\"\u003e\n\u003c/figure\u003e\n\n\n\n\n\u003ch3 class=\"relative group\"\u003e■ 作品介紹 \n    \u003cdiv id=\"-%E4%BD%9C%E5%93%81%E4%BB%8B%E7%B4%B9\" class=\"anchor\"\u003e\u003c/div\u003e\n    \n    \u003cspan\n        class=\"absolute top-0 w-6 transition-opacity opacity-0 ltr:-left-6 rtl:-right-6 not-prose group-hover:opacity-100\"\u003e\n        \u003ca class=\"group-hover:text-primary-300 dark:group-hover:text-neutral-700\"\n            style=\"text-decoration-line: none !important;\" href=\"#-%E4%BD%9C%E5%93%81%E4%BB%8B%E7%B4%B9\" aria-label=\"定位點\"\u003e#\u003c/a\u003e\n    \u003c/span\u003e        \n    \n\u003c/h3\u003e\n\u003cdiv class=\"lead text-neutral-500 dark:text-neutral-400 !mb-9 text-xl\"\u003e\n  立志要行俠仗義的女警，踏進了黑道老大開的純素甜點店！\n\u003c/div\u003e\n\n\u003cp\u003e黑道老大究竟在追夢，還是犯罪掩蓋？\n這是一部結合「黑道 × 女警 × 甜點店」的警匪喜劇，在蛋糕香氣與懸疑氣氛中，甜中帶笑、笑裡藏刀！\n立志要將飴灣第一大幫「松義盟」首腦繩之以法的女警，一步一步在香甜誘惑之下登上江湖盟主的傳奇故事，就此展開！\n\u003cbr\u003e\u003c/p\u003e","title":"漫畫3D製作《黑道甜點店》","type":"art"},{"content":"","date":"319 Oct 31310","externalUrl":null,"permalink":"/tags/assets/","section":"Tags","summary":"","title":"Assets","type":"tags"},{"content":" ▼ 3D素體下載 ▼ https://assets.clip-studio.com/zh-tw/detail?id=1863114\n","date":"31310-80-319","externalUrl":null,"permalink":"/tc/resources/thita-3d-body-female_2021/","section":"資源","summary":"內建輔助線的女性3D素體，方便參考人體結構與繪製各種姿勢。","title":"CSP素材 3D女性素體","type":"resources"},{"content":"","externalUrl":null,"permalink":"/tc/authors/","section":"Authors","summary":"","title":"Authors","type":"authors"},{"content":"","externalUrl":null,"permalink":"/tc/categories/","section":"Categories","summary":"","title":"Categories","type":"categories"},{"content":"","externalUrl":null,"permalink":"/tc/series/","section":"Series","summary":"","title":"Series","type":"series"},{"content":"","externalUrl":null,"permalink":"/tc/home/","section":"我的主頁","summary":"\u003c!--\n# 歡迎！\n\n這裏是我的中文主頁內容。\n--\u003e","title":"我的主頁","type":"home"}]