2025-06-10 13:16:36 +00:00
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System;
|
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-06-10 13:16:36 +00:00
|
|
|
namespace Rokojori.Reallusion
|
|
|
|
|
{
|
|
|
|
|
public class CCSubsurfaceScatter:CCImportFileBase
|
|
|
|
|
{
|
|
|
|
|
public CCJSONProperty<float> radius = new CCJSONProperty<float>( "Radius" );
|
|
|
|
|
|
|
|
|
|
public CCSubsurfaceScatter( CCImportFile file ):base( file )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ReadFrom( JSONObject jsonObject )
|
|
|
|
|
{
|
|
|
|
|
radius.Read( jsonObject );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|