Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Nimuin · Jun 04, 2015 at 01:22 PM · threadingudpmain thread

SetBlendShapeWeight can only be called from main thread

I'm currently struggling with controlling the blendshapes in my script.

Some background: I've written an external application to go from text to phonemes. These phonemes will be used to drive the mouthshapes of my character in Unity.

My current problem is that I'm running my UPDRead() method in a seperate thread (from which I am trying to call SetBlendShapeWeight). However, as the title states, SetBlendShapeWeight can only be called from the main thread. When I try to parse the data from UDPRead() to the main thread (update()), it only reads the final two bytes in the string.

My question is how can I fix this? Do I need multithreading for this? Or is there some way to use SetBlendShapeWeight from this seperate thread?

Below is my code:

 using UnityEngine;
 using System.Collections;
 
 using System;
 using System.Text;
 using System.Net;
 using System.Net.Sockets;
 using System.Threading;
 using System.Text.RegularExpressions;
 
 public class UDPClient : MonoBehaviour {
 
     public string a;
     public int port = 11000;
     public int port2 = 6100;
     private UdpClient client;
     private UdpClient client2;
     private IPEndPoint remoteIPEndPoint;
     public static byte []receive_byte_array;
     public static string b;
     public byte []receive_time_array;
     private Regex regexParse;
     private Thread t_udp;
     public static bool receive = false;
     public SkinnedMeshRenderer skinnedMeshRenderer;
     public Mesh skinnedMesh;
 
     void awake(){
         skinnedMeshRenderer = GetComponent<SkinnedMeshRenderer> ();
         skinnedMesh = GetComponent<SkinnedMeshRenderer> ().sharedMesh;
     }
 
     // Use this for initialization
     void Start () {
         client = new UdpClient (port);
         client2= new UdpClient(port2);
         remoteIPEndPoint = new IPEndPoint (IPAddress.Any, 0);
         regexParse = new Regex (@"\d*$");
         t_udp = new Thread (new ThreadStart (UDPRead));
         t_udp.Name = "Mindtuner UDP thread";
         t_udp.Start ();
     }
 
     public void UDPRead(){
         while (true) {
             try {
                 receive = true;
                 receive_byte_array = client.Receive(ref remoteIPEndPoint);
                 receive_time_array = client2.Receive(ref remoteIPEndPoint);
                 string returnData = Encoding.ASCII.GetString(receive_time_array);
                 double time = Convert.ToDouble(returnData);
                 b = MouthShapes(receive_byte_array[0]);
                 //Debug.Log(b + " " + returnData); 
                 } 
             catch (Exception e) {
                 Debug.Log ("Not so good " + e.ToString ());
             }
             Thread.Sleep (20);
         }
     }
 
     // Update is called once per frame
     void Update () 
     {
         Debug.Log (b);
     }
 
     private string MouthShapes(byte letter)
     {
           switch(letter)
         {
              case 10:
                     //Debug.Log("aa");
                 a ="aa";
                     skinnedMeshRenderer.SetBlendShapeWeight(5,70);
             break;
              }
      }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

UDP using HTC VIVE tracker 0 Answers

error uploading file to parse with unity 5.1.1f1 1 Answer

getting udp package info inside unity (GlovePIE) 0 Answers

I cant read from the sockets properly - exception 0x80004005: An invalid argument was supplied 2 Answers

Threading with UDPClient - Editor Freezing 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges