Custom Model Card Decks – Tabletop Simulator

Custom Model Card Decks – Tabletop Simulator 1 - steamclue.com
Custom Model Card Decks – Tabletop Simulator 1 - steamclue.com

TTS doesn’t have an elegant solution for a deck of cards that aren’t in a preset shape. This guide shows how to make your own card deck using custom models, an a*set bundle, and some scripting so that you can make cards whatever shape that you want!
 
 

Disclaimer

This guide requires slightly advanced knowledge of Tabletop Simulator, Unity, creating a*set bundles, and some light 3D modeling ability. It is not my intention to explain how to do those things. It also requires a little bit of LUA scripting, but there is a supplied example from the workshop that contains the commented version of the scripts, so modifying it for your needs should hopefully be easy. The intention of this guide is to show how to use those things to create a custom set of objects to mimic the behavior of a set of cards and a deck.
 
 
 

Get the Example Project!

Get this example project from the Workshop. It has a fully commented version of the scripts that need to be added to the Asset Bundle!
 
https://steamcommunity.com/sharedfiles/filedetails/?id=2784173462 – [steamcommunity.com] 
 
 
 

Introduction

Have you ever found yourself making a game with strange shaped cards, and when you go to make them you get some rectangular border around the edges of it? Unseemly. Maybe you imported some custom models only to find out that you can’t stack them neatly, shuffle them, and deal them out to your players. This guide aims to be the remedy for that. In it we will be creating an a*set bundle that has the following features:
 

  • Appear to be a stack of a custom model
  • When the matching custom model is placed within it or removed, the stack will appear to gain or lose a copy of that model
  • Only accept the matching custom model
  • Only accept a maximum amount of the matching custom model
  • All features of a bag (shuffle, search, deal, etc.)

 
Essentially we are making a bag that looks like it is a normal deck of TTS cards.
 
 
 

Step 1: The Custom Model

Create a 3D model of your card in Blender. Do it however you wish. I generally create a custom card by importing an image of the card as a plane, creating a new vert, and then extruding it to draw the outline. Then I fill it to create a plane, and then extrude that plane to give it some thickness. There are other ways of doing it too. Then you UV unwrap the model and texture it. Again, there’s more than one way to skin a cat here. You can either create one texture per card, or you can make a single texture atlas for all of the card faces and make multiple versions of the model and move the UV position of the face on the atlas. I think either is fairly valid, but I prefer to do a different texture for each card and only use one model. DO NOT FORGET TO TRIANGULATE FACES.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 1: The Custom Model - 40FE6CA53
 
Once that is done, export your model as a .obj
 
 
 

Step 2: Importing Your Cards

Import the model in TTS. Click on Objects, and then Components > Custom > Model. Select your obj in Model/Mesh, and your first texture in Diffuse/Image, and your obj again in Collider if you wish. Presumably you want these to be playing cards, so change the Material to Cardboard in the Material tab. Then import the model.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - C25CC4A23
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - 36F4BCCFF
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - 4AE528486
 
 
If you are using the same texturing method as me where you have a single model and a unique texture for each card face, then right click the model and choose Clone. Make as many clones of the model as you plan on having in your deck. For the example project I am only using five.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - 4102ECC87
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - 606E8A3F4
 
 
Right click each model and choose Custom. Replace the Diffuse/Image file with the various card face textures that you created so that you have all of your cards represented.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 2: Importing Your Cards - 74EDAC328
 
Save your project and then head back to Blender.
 
 
 

Step 3: Creating the Deck Model

Once you’re back in Blender, have the model for your card open, and go to Object Mode. Look at your card from either the X or Y axis. Then right click on it and select Duplicate Objects (Shift+D). Immediately right click to keep the duplicate in the original position.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 3: Creating the Deck Model - 0429F0227
 
Then use the move tool to raise it up on the Z axis so that it is on top of the original model. I like to leave a very tiny gap between them to make them look more like a stack of cards in the finished product.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 3: Creating the Deck Model - 1A20F8CDE
 
Repeat this for every card in your deck so that you have that amount of mesh groups of cards in your Collection.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 3: Creating the Deck Model - 1D82B3215
 
This time export the model as a .fbx so that you maintain the separate mesh groups. At this point I prefer to create a variant of the card texture that makes the face side blank, but that is entirely up to you.
 
 
 

Step 4: Setting Up the Deck in Unity

Open the TTS Modding project in Unity. Create a folder for your deck model and texture under the Assets folder. Place your .fbx and texture inside of that folder.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - FA0C1A212
 
 
Click on your model and then click on Extract Materials in the Materials tab in the Inspector.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 9B6650514
 
 
Open the material that appeared and drag your texture into the box next to Albedo, then click the Color selection and set the color to pure white.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - A0BE3F993
 
 
I like to give the deck some kind of effect when it is empty so that it is still visible to the player, but clearly has no cards in it. Create a new Material called Empty. Choose either Fade or Transparent for the Rendering Mode, apply the texture to the Albedo Map as before, and then click the Color selection. This time set it to red, and drop the Alpha on it down so that you can see through the Material.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 265597FB2
 
 
Drag the .fbx into your Hierarchy. It should already have its material applied, but if it does not for some reason then you will have to apply it. Expand the object. Select all of the mesh groups that are revealed when you expand the parent object, and then drag the material into the Inspector where it says Element 0 under Mesh Renderer.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - FE4F8C83F
 
 
Click the parent object of your model, and then click Add Component. Add a Box Collider to the object. Click on the button labeled Edit Collider and use the handles on the collider to pull it in close and tight to the object. I find this easier to do in the Isometric view (You can enable this by clicking on the view under the compa*s, it will probably be “Persp”).
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 9C9DE9C7C
 
 
At this point drag the object from your Hierarchy into your Folder that you created for your model, texture, and materials to create a Prefab of it. Click on the Open Prefab button in the Inspector so that you are editing the Prefab exclusively.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 9A062E577
 
 
Navigate to Window > Animation > Animation to bring up the Animation window. Make sure the Parent Object of your model is selected. Click the Create button in the Animation window, and then choose a location to save your Animations (I prefer to add an Animations folder to the folder that I’m working out of for everything else so that the animation files don’t clutter the main folder). Name your first animation and save it. (Another preference of mine is to name it after the amount of cards that are displayed starting with a full deck. In this case I named it “5”)
 
 
Click the Add Property button on the Animation window and select the first mesh > Mesh Renderer > Enabled.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 739E0A071
 
 
Do this for every Mesh in your model so that it looks like this.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - B1B0213AC
 
 
Press Ctrl + A to select all and then Ctrl + C to copy all of the Properties and Keyframes. Click the drop down that has the name of your animation and click Create New Clip. Save the new animation (With my naming scheme the new animation is called “4”).
 
 
Press Ctrl + V to paste the Properties and Keyframes from the previous animation. Click the checkbox next to the Mesh Renderer for the top most card in the deck.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 4CFB002FC
 
 
Move the cursor in the timeline to the set of keyframes at the end and then disable the checkbox next to the Mash Renderer for the top most card again.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - F167F7672
 
 
Select all and copy again, and create a new animation (this time I called it “3”). Paste in the Properties and Keyframes and repeat the same process as before, but this time disable the mesh renderer on the next card down as well.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - FEC5831E9
 
 
Continue to do this until you are finished making the animation for when there is only a single card. Copy your properties and keyframes again and create a new animation (I call mine “0”). Paste in your Properties and Keyframes, but this time keep the last card enabled. Click Add Property again and select the Mesh for the final card > Mesh Renderer > Material Reference.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - FBD9055AC
 
 
If needed, click the arrow to expand the new property so you can see the thumbnail of the material. Drag and drop your Empty material into the first and last keyframes of the animation.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 4: Setting Up the Deck in Unity - 276E7DE6D
 
 
Press Ctrl+S to save your Prefab and Animations.
 
 
 

Step 5: Adding Components and Building the Asset Bundle

Make sure the parent object of the model is selected and click Add Component > Animation. Drag the animation file you created for a full deck into the Animation field of the component. Under Animations, change the Size to the amount of animations that you have (In my case 6), and then drag each of your animations into the Elements that appear starting from the full deck down to empty.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 5: Adding Components and Building the Asset Bundle - B32B4B188
 
 
Click on Add Component again and this time add TTS Asset Bundle Effects. Expand Looping Effects in this Component and change the Size to be the amount of animations that you have.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 5: Adding Components and Building the Asset Bundle - 621AD7216
 
 
In each Element define a name for the Looping Effect (I just name it after the animation), expand the Animator section, drag the Parent object of the model into the Animator Component, and type in the exact name of the animation for that state in State Name. I prefer to do this from the full deck down to empty.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 5: Adding Components and Building the Asset Bundle - 17B1D3965
 
 
Press Ctrl + S to save your prefab again. Click on the prefab in the file manager so that it opens up in the inspector.
 
 
At the bottom of the preview window in the inspector it should say AssetBundle with a drop down menu. Click that and choose New. Type in a unique name in the text box that appears.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 5: Adding Components and Building the Asset Bundle - BA02F7E8E
 
 
Right Click in the file manager and choose Build AssetBundles. Wait for this to finish.
 
 
 

Step 6: Setting Things Up in TTS

At this point you are ready to import into TTS. Go back in and select Objects > Components > Custom > AssetBundle. Browse to where the Asset Bundle was saved for the Main field. These get saved in the Unity project in a folder called “AssetBundles”.
 
 
Select your Asset Bundle, set its Type to Bag, and change its Material to Cardboard.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 6: Setting Things Up in TTS - F814E38F5
 
 
At this point you can right click on your imported Asset Bundle and flip through the looping effects to make sure your animations are showing up properly
 
 
Custom Model Card Decks - Tabletop Simulator - Step 6: Setting Things Up in TTS - FE26B396E
 
 
Sometimes the material on your Asset Bundle can appear a little dark, you might need to adjust your material in Unity, or change the color tint in TTS on your cards to match it. Up to you.
 
 
Custom Model Card Decks - Tabletop Simulator - Step 6: Setting Things Up in TTS - 73436151B
 
 
 

Step 7: Scripting

Now you have a bag with some animations, but we need to script up all of the features. The example Workshop item has a commented version of the script inside of it, so please refer to that on how to set yours up, but I will cover the functions here briefly.
 
 
The script starts with “function onUpdate()”, this makes the game run a check every frame. Below that we have the block of code that dictates which Looping Effect should play for each amount of objects within the a*set bundle.
 
 
The line “if self.getQuantity() == 0 then” is stating if there are 0 items in the a*set bundle, then do the following line.
 
 
The following line “self.AssetBundle.playLoopingEffect(5)” states to play the 6th Looping Effect if the above Quantity is found within the contents of the Asset Bundle.
 
 
The next line “elseif self.getQuantity() == 1 then” states that if there is 1 item in the a*set bundle then do the action in the following line.
 
 
The following line “self.AssetBundle.playLoopingEffect(4)” states to play the 5th Looping Effect if the above Quantity is found within the contents of the Asset Bundle.
 
 
This continues until you reach a full deck. This would play LoopingEffect(0), or the first Looping Effect.
 
 
If you set up your Looping Effects in Unity so that a full deck uses the first Looping Effect, then it will always be LoopingEffect(0) in your script, and the number counts up as the amount of cards is lessened.
 
 
The second part of the script runs a check any time a player tries to add something to the a*set bundle.
 
 
The first line “ if (obj.getVar(“objectType”) == “ExCard” “ looks to see if the card has a unique identifier in its script. “ExCard” can be whatever you want, but that exact identifier needs to get defined in each of your cards.
 
 
The next line “and self.getQuantity() < 5)” checks to see if the a*set bundle has less than the maximum number of cards in it. Change the number 5 to whatever the maximum amount of cards you have in your deck is.
 
 
The following line “then return true end” will accept the item into the Asset Bundle if both conditions are met.
 
 
The final line “return false” will reject any items that don’t meet both of the defined conditions.
 
 
Next open up the scripting editor on one of your cards, and add the following line:
 
“objectType = “ExCard” “. ExCard is the unique identifier that the Asset Bundle looks for when someone tries to add an object to it. This can be anything you want as long as it matches what was called in the Asset Bundle’s script. This line needs to be applied to all cards in your deck.
 
 
At this point you should be able to save your game, save the scripts, and it should all work! Go ahead and save your object and import it into your game!
 
 
Custom Model Card Decks - Tabletop Simulator - Step 7: Scripting - 391D60610
 
 

Written by Hobbit Head

 
 
This is all we can share for Custom Model Card Decks – Tabletop Simulator for today. I hope you enjoy the guide! If you have anything to add to this guide or we forget something please let us know via comment! We check each comment! Don’t forget to check SteamClue.com for MORE!
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*