Skip to content

Instantly share code, notes, and snippets.

@deathponta
deathponta / SearchSceneByNodeType.mel
Created October 24, 2018 14:50
指定フォルダ以下から、特定のノードが存在するシーンを見つけます
/*
特定のノードが存在するシーンを検索
*/
proc SearchDir( string $_path ){
string $Dirpass = $_path ;
string $list[] = `getFileList -fld $Dirpass` ;
for( $s in $list ){
@deathponta
deathponta / SearchSceneByNodeType.mel
Created October 31, 2018 13:15
特定のノードが存在するシーンを検索して、見つかったらスクリプトエディタに出力
/*
特定のノードが存在するシーンを検索して、見つかったらスクリプトエディタに出力
*/
proc SearchDir( string $_path ){
string $Dirpass = $_path ;
string $list[] = `getFileList -fld $Dirpass` ;
for( $s in $list ){
@deathponta
deathponta / ChangePlaybackSpeed.mel
Created November 15, 2018 11:28
再生速度を変更
/*
プレイバックスピードを変更します。ただそれだけの物語。
*/
proc ChangePlaybackSpeed(){
string $window = "ChangePlaybackSpeed";
if( window( "-ex" , $window ) ){
deleteUI $window;
}
@deathponta
deathponta / SetJointSegmentScale.mel
Created November 20, 2018 13:51
選択したボーンのセグメントスケールを一括でオンオフ
// 選択したボーンのセグメントスケールを一括でオンオフ
proc SetJointSegmentScale( int $flag ){
$sels = `ls -sl -tr`;
for( $i=0; $i<`size($sels)`; $i++ ){
//print( $sels[$i] );
setAttr ($sels[$i]+".segmentScaleCompensate") $flag;
}
}
@deathponta
deathponta / PCHealthCheckup_GOwithAdministratorAuthority.bat
Created March 13, 2024 03:37
PC健康診断_管理者権限でGO
rem http://faq3.dospara.co.jp/faq/show/11947?site_domain=default
@echo off
echo Running DISM.exe...
DISM.exe /Online /Cleanup-image /Restorehealth
echo.
echo Running sfc /scannow...
sfc /scannow
echo.