-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from inworld-ai/yjRegen2
1. INTG-1401 regenerate utterance. 2. Put Sentis lipsync in separate demo
- Loading branch information
Showing
20 changed files
with
250 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/************************************************************************************************* | ||
* Copyright 2022-2024 Theai, Inc. dba Inworld AI | ||
* | ||
* Use of this source code is governed by the Inworld.ai Software Development Kit License Agreement | ||
* that can be found in the LICENSE.md file or at https://www.inworld.ai/sdk-license | ||
*************************************************************************************************/ | ||
using System; | ||
using System.Collections.Generic; | ||
using UnityEngine; | ||
|
||
namespace Inworld.Packet | ||
{ | ||
[Serializable] | ||
public class ApplyResponse | ||
{ | ||
public PacketId packetId; | ||
} | ||
[Serializable] | ||
public class ApplyResponseEvent | ||
{ | ||
public ApplyResponse applyResponse; | ||
} | ||
|
||
[Serializable] | ||
public class ApplyResponsePacket : InworldPacket | ||
{ | ||
public ApplyResponseEvent mutation; | ||
|
||
public ApplyResponsePacket() | ||
{ | ||
type = "MUTATION"; | ||
mutation = new ApplyResponseEvent(); | ||
} | ||
public ApplyResponsePacket(InworldPacket rhs, ApplyResponseEvent evt) : base(rhs) | ||
{ | ||
type = "MUTATION"; | ||
mutation = evt; | ||
} | ||
public override string ToJson => JsonUtility.ToJson(this); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.