Sims 4 Cutout Tutorial

By TSR Staff

This Sims 4 cutout tutorial will show you how to create a functional window compatible with The Sims 4 using Sims 4 Studio and Blender.

I’m assuming if you follow this thread that you already know how Sims4studio works and that you’re familiar with the basics of making custom content. If not, I recommend learning first with the help of the tutorials you can find on our site.

This tutorial will not show you how to create a new mesh, all it will do is show you how to create a working opening from a mapped mesh.

This tutorial is NOT an easy fix for already existing windows. If you want to repair the broken CC, wait for the batch fix .

What you need

Rectangular Cutout (easy way)

Step 1: Get the coordinates.

  • Open your mesh in Blender.
  • Create a plane that will be your cutout, aligned with your mesh.
    sims 4 rectangular cutout tutorial
  • Go in Edit mode, toggle vertex select mode and select the top left vertex.
  • Hit [Shift⇧ + S]> Cursor to selected.
    cursor to selected
  • Look on the right tab ([N] if hidden), and search for 3D cursor location. Copy in a notepad the X and Z coordinates.
    X and Z coordinates
  • Select the bottom right vertex, hit [Shift⇧ + S]> Cursor to selected, and copy the X and Z coordinates.
    copy coordinates

Step 2: Edit the Model Cutout

  • Open S4Studio.
  • Go to the Warehouse, select Model Cutout then click on Edges > Edit Items…
    model cutout
    Note: The 4 first edges seems to be the general shape cutout (maybe for footprint?), the next edges are the actual shape of the cutout. In our case, the window is rectangular so there are 8 edges in total. I recommend to keep the order from EA cutout, and therefor, to clone a mesh that will be close to our final mesh.
  • Paste the coordinates you collected from blender without changing its order. The coordinates are in the format of X,Z,Y and Y will (supposedly) always be 0.
    paste the coordinatesExample:
    From step 1, you collected your top left vertex to be X=-0.5 and Z=2, and bottom right is X=0.5 and Z=0.1.
    If the first entry of your cutout is
    -1.35131,2.8025,0
    -1.35131,0.0475,0
    then change it to:
    -0.5,2,0
    -0.5,0.1,0If the second entry of your cutout is
    1.3513,2.8025,0
    -1.35131,2.8025,0
    then change it to:
    0.5,2,0
    -0.5,2,0
    Sims 4 rectangular cutout tutorial

Step 3 : Edit the Cutout Info Table

In case you didn’t use an EA clone that matches your cutout, or if you just want to create a shape that doesn’t exist in the base game catalog (like 3 tiles windows or wider), you’ll need to change some settings for your item to work properly.

  • Go to the Warehouse, select Cut Info Table then click on Entries > Edit Items…
    cut info table
  • If you changed the wall height, you’ll need to edit “MinimumWallHeight
    • Short wall= 3
    • Medium wall= 4
    • Tall wall= 5

MinimumWallHeight

  • If you changed the wall width, you’ll need to edit “CutoutTileWidth” and enter the number of tile of your object.
    CutoutTileWidthNote: If you’re not sure, know that 1 unit in blender is 1 tile in game. So if your X coordinates are -1.4 and 1.4, your tile width is most likely 3.

Step 4 : Edit the Diagonal

This part is for the windows that have two meshes, two model cutout resources, and two entries in the cutout info table. The second mesh is for diagonal walls.

Now, to find the width of your diagonal window, you’ll need to do a little math. Remember that old pal, Pythagoras ? Apply his trigonometry rule to your window width, and you’ll find your diagonal width value. You’ll need to edit both MESHES and Model Cutout coordinates for your window to work proportionally on diagonal walls.

Note: If you’re too lazy to edit your diagonal mesh, it’s completely fine. Just import your window mesh in the #2 model and paste the same coordinates in the Model Cutout. This is mostly useful if you have a full width window on your orthogonal wall and you want it to be full width as well on the diagonal wall.

Example:
Our window width is 1.
We want the diagonal width, so a.
Pythagorean TheoremAccording to the Pythagorean Theorem, a² = b²+ c²
Therefore, the diagonal width will be 1.414, and the X coordinates will be -0.707 and 0.707 (as the window is symmetrical on the X axis).

rectangular cutout finished product

Round Cutout

Disclaimer: This part is experimental and may change in the future. I tried to understand how the round cutouts are made, as they seem different than the rectangular one. Actually, there are no verified hypothesis at the moment on the new cutout method to support my theory so I might not be right.

Finally, the results are acceptable but far from perfect. I noticed than even round cutouts from EA base game items are borked, so I’m wondering if this is the best we can achieve from now on. I’m waiting on Andrew’s S4S batch fix to see if it will be able to do better and will edit this post accordingly if so.

Step 1: Get the Coordinates

This step will change a little from the rectangular method as we will use a short cut to get all our coordinates without picking up each vertices.

  • Open your mesh in Blender.
  • Create a plane that will be your cutout, aligned with your mesh.
    create a plane
  • Go in Object mode, select your plane mesh and go to File > Export >.obj
    select plane mesh
  • Select “Selection Only” and untoggle every options as shown in the screenshot, then click Export.
    untoggle options
  • Open the .obj file with a text editor, remove the unnecessary bit then replace all space with a comma (,). Those are the coordinates of your cutout, clockwise.
    mesh obj file

Step 2: Edit the Model Cutout.

  • Open S4Studio.
  • Go to the Warehouse, select Model Cutout then click on Edges > Edit Items…
  • Erase all but the 4 first edges.
  • As a reminder, the first 4 edges are the general square shape of our cutout. In your coordinates list, select the higher X and Z and the lower X and Z, and those will be your coordinates. Paste them following this order:
    edge order
  • We’ll now need to add the edges from our cutout. Create as many edges as necessary. Place the coordinates between edges counterclockwise.

Example:
round cutout example
Following this diagram:

    • Edge 1: A-B
    • Edge 2: B-C
    • Edge 3: C-D
    • Edge 4: D-E
    • Edge 5: E-F
    • Edge 6: F-G
    • Edge 7: G-H
    • Edge 8: H-I
    • Edge 9: I-J
    • Edge 10: J-K
    • Edge 11: K-L
    • Edge 12: L-A (closing the loop)

And that’s it for the round cutout tutorial! Check in game to see if you didn’t make any mistake while copying/pasting.

some small cracks

round cutout final product

Note that small cracks might appear between some edges. I tried changing the order of entering coordinates and while the cracks move from place to place, I never found a combination that removed them all. Having a larger frame will most likely avoid seeing them, as you’ll be able to have less vertices (the first picture have 12 edges, the second one has 18).

Note also that it is indispensable to go counterclockwise, or your cutout will be taken negatively.

coordinates counterclockwise vs clockwise

Let me know if you have any questions, if I made a mistake or if you found something I didn’t.

Happy creating!

Download blocked
Please turn off your ad-blocker to download.
If ads are a problem you can become a VIP member and enjoy an ad-free site.



Getting this message with no ad-blocker active?
Go here for help .

You still have in credit - why not treat yourself to some VIP?

No, thanks, not now Go to shop
Download Basket
Basket example

As a VIP member, you can add up to 1 Gb of custom content in your Download Basket and download it all together in just one click.

Try VIP membership for free.

Favorites
Basket example

This feature requires a free account - do you want to sign up now?


As a registered member, you can add up to 10 items in your favorites list.
As a VIP you can add up to 1GB of favorite items and download them all in one click.

Favorites

You free quota has been reached. As a free member you can have up to 10 items on your favorites list.

Favorites example

For as low as $3/Month you can:

  • Have unlimited favorites
  • Download all favorites in one click
  • Add favorites to the download basket
  • Download all selected favorites with the TSR CC Manager

Saved searches

Why not save your search and let us alert you when new matching downloads become available? All this and more for just $3 / mo!.

Upgrade Your Subscription
Get 4 free months of VIP at The Sims Resource by upgrading to an annual plan for just $24!
Upgrade Your Subscription
Get 4 free months of VIP at The Sims Resource by upgrading to an annual plan for just $24!
Upgrade Your Subscription
    Selected Payment Method:
    $24 will be charged to the selected payment method.
    TSR CC Manager
    Basket example
    As a VIP member, you can One Click download, install and manage your custom content fast and easy with the TSR CC Manager.
    Try VIP membership for free.
    .edu Email detected
    It looks like you're trying to register with an email from your educational facility. .edu emails don't tend to allow TSR emails through the gateway. As a result:
    • you won't be able to reset your password should you forget it
    • you won't able to change your email address later
    • if you need to contact Support, our Support Team will not be able to reach you.
    We strongly recommend you choose a personal email address.
    OK
    Generate Gift Card Promotion

    VIP Members get 3 Days Early Access
    VIP Early Article Access
    The Magazine will be publicly available on May 20, 2022. Don’t want to wait? Get VIP Membership and Read it Now!
    Update Email Address:
    E-mail*:

    In order to unlink your account, you must set a password
    Password:
    Password Again:

    Download Basket

    - items + - item(s) with required items

    Total size: - of 1GB ( left)

    Sort by
    Date, new to old
    • Date added to the basket
    • Name of creation
    • Artist name
    • Date item published
    • Size of the creation
    Asc
    • Asc
    • Desc
    Filter
    All items
    • All items
    • Selected only
    # Item Name
    Artist
    Date Added
    Item Type
    Size
    Please wait - loading...

    Download Basket

    Sort by
    Date, new to old
    • Date added to the basket
    • Name of creation
    • Artist name
    • Date item published
    • Size of the creation
    Asc
    • Asc
    • Desc
    Filter
    All items
    • All items
    • Selected only
    Please wait - loading...

    - items + - item(s) with required items

    Total size: - (1 GB Maximum)

    Please don't solicit our artists for other work, joining other sites or seeking to take and upload their work elsewhere. This is something we don't allow.

    This is a VIP feature only. Unlock everything by joining our VIP supporters plan today!
    Favorites example

    Limited Time Offer
    Now extended to 21st March!

    For a limited time only, we’re giving away a free Shockwave game to anyone signing up to our annual VIP premium access plan!

    Choose your free game!

    1
    2
    I don’t want a free game - just send me my VIP!
    Buy my annual VIP pass for giving me premium access to The Sims Resource and send me my free game!

    Your game code will be emailed to after you complete your purchase

    Want your game code to be sent to a different email? Click here to change

    *Note: games are non-refundable once this plan is purchased. Any refund we issue under our usual Terms Of Service will have the retail value of $6.99 deducted from the refund price.


    Limited Time Offer
    Now extended to 21st March!
    Are you sure you don't want a free game?

    Thanks! Someone from Support will be in touch very soon!

    Replies are normally within 24 hours and often a lot sooner.

    Ensure that you add [email protected] to your email safe-senders list!

    Want to add this item to your Basket?

    Learn More about VIP
    Want to install with CC Manager?

    Learn More about CC Manager
    By Artist Name
    Published November 15, 2022 •
    Download Now Downloaded View More Details See More and Download Now CC Manager CC Manager Add to Basket Add to Basket Please wait - adding... Added to Basket Delete from Basket Please wait - adding...