-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
the1schwartz
committed
May 2, 2022
1 parent
47db3c1
commit a93f6c6
Showing
28 changed files
with
75 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Packages/ | ||
wally.lock |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
local ReplicatedStorage = game:GetService("ReplicatedStorage") | ||
local GameAnalyticsInit = require(ReplicatedStorage.GameAnalyticsSDK.Initialize) | ||
-- using wally package | ||
--local GameAnalytics = require(ReplicatedStorage.Packages.GameAnalytics) | ||
-- using rojo or manually copied in | ||
local GameAnalytics = require(ReplicatedStorage.GameAnalytics) | ||
|
||
GameAnalyticsInit.initClient() | ||
GameAnalytics:initClient() |
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
local ReplicatedStorage = game:GetService("ReplicatedStorage") | ||
local GameAnalytics = require(ReplicatedStorage.GameAnalyticsSDK) | ||
local GameAnalyticsInit = require(ReplicatedStorage.GameAnalyticsSDK.Initialize) | ||
-- using wally package | ||
--local GameAnalytics = require(ReplicatedStorage.Packages.GameAnalytics) | ||
-- using rojo or manually copied in | ||
local GameAnalytics = require(ReplicatedStorage.GameAnalytics) | ||
|
||
GameAnalyticsInit.initServer("MY_GAME_KEY", "MY_SECRET_KEY") | ||
GameAnalytics:setEnabledInfoLog(true) | ||
GameAnalytics:setEnabledVerboseLog(true) | ||
|
||
GameAnalytics:initServer("MY_GAME_KEY", "MY_SECRET_KEY") |
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,33 @@ | ||
{ | ||
"name": "GameAnalyticsSDK test project", | ||
"tree": { | ||
"$className": "DataModel", | ||
|
||
"ReplicatedStorage": { | ||
"$className": "ReplicatedStorage", | ||
"Common": { | ||
"$path": "src/shared" | ||
}, | ||
"Packages": { | ||
"$path": "Packages" | ||
} | ||
}, | ||
|
||
"ServerScriptService": { | ||
"$className": "ServerScriptService", | ||
"Server": { | ||
"$path": "src/server" | ||
} | ||
}, | ||
|
||
"StarterPlayer": { | ||
"$className": "StarterPlayer", | ||
"StarterPlayerScripts": { | ||
"$className": "StarterPlayerScripts", | ||
"Client": { | ||
"$path": "src/client" | ||
} | ||
} | ||
} | ||
} | ||
} |
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,8 @@ | ||
[package] | ||
name = "gameanalytics/exampleproject" | ||
version = "0.1.0" | ||
registry = "https://github.com/UpliftGames/wally-index" | ||
realm = "shared" | ||
|
||
[dependencies] | ||
GameAnalytics = "gameanalytics/[email protected]" |
This file was deleted.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "GameAnalyticsSDK", | ||
"name": "gameanalytics-sdk", | ||
"tree": { | ||
"$path": "GameAnalyticsSDK" | ||
"$path": "gameanalytics-sdk" | ||
} | ||
} |
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
GameAnalyticsSDK/GameAnalytics/Version.lua → gameanalytics-sdk/GameAnalytics/Version.lua
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
local version = { | ||
SdkVersion = "2.1.35" | ||
SdkVersion = "2.2.0" | ||
} | ||
|
||
return version |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "gameanalytics/gameanalytics-sdk" | ||
description = "Official Roblox SDK for GameAnalytics. GameAnalytics is a free analytics platform that helps game developers understand their players' behaviour by delivering relevant insights." | ||
version = "2.1.35" | ||
version = "2.2.0" | ||
license = "MIT" | ||
authors = ["GameAnalytics <[email protected]>"] | ||
realm = "shared" | ||
|