Posts

How to fix clothes flickering in Unreal Engine 5.

Image
 This issue can be noticed some of the character clothes when using Paragon Characters in UE5. To fix the flickering issue, Use Self Collisions checkbox in collisions properties under the Static Mesh option of your character. Open the character model go to   Asset Details > Clothing Properties - Cloth Config - ChaosClothConfig - Collision Properties - Use Self Collisions > False

How to Convert Unreal Engine 5.1 Blueprint Project to C++ Project

Image
To begin, open your project in the Unreal Engine 5 or a newer version of the editor.  Next, access the New C++ Class Dialog by selecting Tools and then New C++ Class .  From there, create a new "None" class and press "Create Class."  You might receive a warning message regarding the game module compilation, but you can disregard it and choose "No."  After closing any pop-ups, warnings, or success notifications, exit the Editor.  Proceed to your project's folder, right-click on the .uproject file, and select "Generate Visual Studio project files."  Double-click your project's .sln file to open it in Visual Studio.  In Visual Studio's Solution Explorer, find and choose your project.  Select "Development Editor" in the build configuration drop-down menu.  Right-click on your project and select "Build" to compile it without any errors.  Afterward, set the build configuration drop-down menu to "Development"

Custom Humanoid Character torso part not working with Mesh Animations

Image
This works for Metahuman Character, if your Anim Montage is not working MetaHuman Character after retargeting to UE5 Quinn or Manny. First follow the video tutorial below to Retarget Meta Human to UE5 Skeletal Mesh then follow the steps below to make it compatible with the Anim Montages. https://www.youtube.com/watch?v=VEhSX04mxOY For ensuring Anim montages work with your Meta Human Character. Make sure Torso, Legs and Feet are attached to body. Make sure you have the master pose setup in the construction script but it should already be there. Change feet’s animation class to “AnimPrevieAttachInstance”. Leave the body, legs and torso as your animation blueprint. Now your feet should be not detaching from the legs. Hope this helps anyone.

Flutter Building for iOS with Firebase device token error

 To solve it add following to AppDelegate  override func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {    Messaging.messaging().apnsToken = deviceToken    print("X__APNS: \(String(describing: deviceToken))")    super.application(application, didRegisterForRemoteNotificationsWithDeviceToken: deviceToken)  }

How to abuse DOTA 2 Battle Pass 2022

Image
 Let me just clear this up for you without wasting anytime. You CANNOT ABUSE in Battle Pass 2022 because there are no wager tokens, yet . Let's just hope there will be wager token when Battle Pass 2 is released. Until then there is no use of abuse lobby other than clearing Cavern Crawl map. If you're still interested on how an Abusing Lobby works check out the abusing guide below https://www.shiftescape.com/2020/05/how-to-abuse-dota-2-battle-pass-2020.html

Setting up Rabbit MQ Server

 Docker command: docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.10-management To add a vhost rabbitmqctl add_vhost my_vhost and give permission to guest user rabbitmqctl set_permissions -p my_vhost guest ".*" ".*" ".*" Useful links: https://stackoverflow.com/questions/39522467/create-vhost-on-windows-rabbitmq-node-using-command-line

Create Asset bundle in Unity3d

Image
 Original Source: http://gyanendushekhar.com/2016/06/16/create-asset-bundle-unity3d/ Create Asset Bundle in unity3d – step by step guide Step 1 Select the asset that you want to add in asset bundle. In the bottom of Inspector pane, click on asset bundle field. Step 2 Click on the  new  if you want to add your asset in new asset bundle or select the already named asset bundle. You will get the entire named asset bundle over here. You can add multiple assets to a single asset bundle name. Step 3 Write the name of the asset bundle and hit ENTER key. Then you will see name of your asset bundle in the  AssetBundle  field. Step 4 Add  Editor  Folder in Assets folder and add below script in this folder.  Asset bundles are platform (android, iOS etc) dependent; so generate asset bundle accordingly. You can select platform by setting  BuildTarget  argument.  For below code, assets bundles will be generated in “Assets/AssetBundles” folder. 1 2 3 4 5 6 7 8 9 10 using UnityEditor ;   public clas