Skip to content

Commit

Permalink
Merge pull request #225 from sfc-sdp/feature/#224
Browse files Browse the repository at this point in the history
GameCanvas 6.4.0
  • Loading branch information
seibe authored Oct 1, 2023
2 parents ac4d3f5 + 0049d16 commit da1df84
Show file tree
Hide file tree
Showing 76 changed files with 689 additions and 16,918 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
strategy:
matrix:
unity-version:
- 2021.3.22f1
- 2022.3.10f1
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion Assets/GameCanvas/AutoGeneratedScripts/GcFont.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ namespace GameCanvas
public readonly partial struct GcFont : System.IEquatable<GcFont>
{
internal const int __Length__ = 1;
public static readonly GcFont DefaultFont = new GcFont("GcFontDefaultFont");
public static readonly GcFont DefaultFont = new("GcFontDefaultFont");
}
}
8 changes: 4 additions & 4 deletions Assets/GameCanvas/AutoGeneratedScripts/GcImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ namespace GameCanvas
public readonly partial struct GcImage : System.IEquatable<GcImage>
{
internal const int __Length__ = 4;
public static readonly GcImage BallRed = new GcImage("BallRed", 24, 24);
public static readonly GcImage BallYellow = new GcImage("BallYellow", 24, 24);
public static readonly GcImage BlueSky = new GcImage("BlueSky", 640, 480);
public static readonly GcImage MapPin = new GcImage("MapPin", 50, 64);
public static readonly GcImage BallRed = new("BallRed", 24, 24);
public static readonly GcImage BallYellow = new("BallYellow", 24, 24);
public static readonly GcImage BlueSky = new("BlueSky", 640, 480);
public static readonly GcImage MapPin = new("MapPin", 50, 64);
}
}
4 changes: 2 additions & 2 deletions Assets/GameCanvas/AutoGeneratedScripts/GcSound.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace GameCanvas
public readonly partial struct GcSound : System.IEquatable<GcSound>
{
internal const int __Length__ = 2;
public static readonly GcSound Click1 = new GcSound("GcSoundClick1");
public static readonly GcSound Click2 = new GcSound("GcSoundClick2");
public static readonly GcSound Click1 = new("GcSoundClick1");
public static readonly GcSound Click2 = new("GcSoundClick2");
}
}
5 changes: 5 additions & 0 deletions Assets/GameCanvas/SpriteAtlas.spriteatlas
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ SpriteAtlas:
bindAsDefault: 1
isAtlasV2: 0
cachedData: {fileID: 0}
packedSpriteRenderDataKeys:
- b7fd20551d34df04684ac005d1b54c14: 21300000
- 820c3d68c4b9a244eae072d5333fb3e2: 21300000
- 3212428bff945a84cb1e2c2aaf887e2d: 21300000
- 42005afb256654d4db0ccb3704572942: 21300000
m_MasterAtlas: {fileID: 0}
m_PackedSprites:
- {fileID: 21300000, guid: b7fd20551d34df04684ac005d1b54c14, type: 3}
Expand Down
39 changes: 32 additions & 7 deletions Assets/Res/BallRed.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 32 additions & 7 deletions Assets/Res/BallYellow.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 32 additions & 7 deletions Assets/Res/BlueSky.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit da1df84

Please sign in to comment.