Michael Kowalski makowalski
  • Joined on 2020-09-17
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-27 00:41:01 +02:00
04e94008fa USD: replaced cout/cerr with CLOG
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-27 00:01:29 +02:00
971016409c USD: no longer creating an empty for dome lights on import
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 23:42:22 +02:00
3f45f195b0 USD: Fix crash due to name collision exporting dome light
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 22:58:41 +02:00
eca12065cd USD: WIP: removed unnecessary use of ELEM macro.
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 21:14:04 +02:00
2468bbd391 USD: WIP: refactor to reduce duplicated code; cleanup
554293555b USD: WIP: adding comment and cleanup
Compare 2 commits »
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 15:09:38 +02:00
32bcccfcf3 USD: WIP: move image copying to separate function
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 06:34:25 +02:00
8eba608d73 USD: WIP: fixing dome light rotation on export
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-26 05:29:09 +02:00
9235923d0b USD: WIP: experimental code setting Mapping node rotation
Michael Kowalski created branch usd_dome_light_io_mak in makowalski/blender 2024-05-25 20:56:44 +02:00
Michael Kowalski pushed to usd_dome_light_io_mak at makowalski/blender 2024-05-25 20:56:44 +02:00
cf34617e5e USD: WIP: creating mapping node for domelight import
0d973cae9a USD: removed code not essential to domelight conversion
efe7565746 USD: removed attempt to access invalid export option
621f016973 USD: fix conflicts from previous merge
5779f95f45 Merge branch 'main' into usd_dome_light_io
Compare 10 commits »
0d973cae9a USD: removed code not essential to domelight conversion
efe7565746 USD: removed attempt to access invalid export option
621f016973 USD: fix conflicts from previous merge
5779f95f45 Merge branch 'main' into usd_dome_light_io
6b6657405f Fix #76704: resetting socket values always resets to zero instead of default value
a6a5fd053a USD Export: filtering option for types to export
62ebc5f351 Fix Image Save operator locking when saving render result
Compare 393 commits »
Michael Kowalski pushed to main at blender/blender-developer-docs 2024-05-24 23:01:38 +02:00
17d3364006 Update docs/release_notes/4.2/pipeline_assets_io.md
Michael Kowalski merged pull request blender/blender#121325 2024-05-24 22:16:58 +02:00
USD Export: Added filtering option for types to export.
Michael Kowalski pushed to main at blender/blender 2024-05-24 22:16:58 +02:00
a6a5fd053a USD Export: filtering option for types to export
Michael Kowalski commented on pull request blender/blender#121325 2024-05-24 21:17:30 +02:00
USD Export: Added filtering option for types to export.

Hi @deadpin. Were you planning to merge these changes, or should I? (Just so we don't both try merging at the same time.)

Michael Kowalski approved blender/blender#121325 2024-05-24 21:13:21 +02:00
USD Export: Added filtering option for types to export.

The changes look great! Thank you!

Michael Kowalski approved blender/blender#121928 2024-05-24 16:07:03 +02:00
USD: Read and write custom attributes for Curves

This update looks great! Thank you!

Michael Kowalski commented on pull request blender/blender#121325 2024-05-24 14:57:41 +02:00
USD Export: Added filtering option for types to export.

I did a quick test, adding the following to USDHierarchyIterator::mark_as_weak_export():

 if (object->type == OB_MESH && ! this->params_.export_meshes) {
    return true;
  }

I…