Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
45ffe8c
Project Initialization
RKS13D Dec 19, 2025
7692996
Asset Import and Conversion
RKS13D Dec 19, 2025
b6c966e
PGS Authentication
RKS13D Dec 22, 2025
571371c
Achievements + IAP + HUD
RKS13D Jan 20, 2026
349da7e
PlayBoard Widget + HUD Widget Removal
RKS13D Jan 20, 2026
6ea1d6c
Gameplay Kart
RKS13D Jan 22, 2026
e27816b
Added Store + PGS + Garage UI
RKS13D Jan 22, 2026
c61b7c2
Achievements Examples
RKS13D Jan 22, 2026
652e875
Removed Console Credentials
RKS13D Jan 22, 2026
8811e5a
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
ec0a6ad
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
5bd46c5
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
6374185
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
cf7d37b
Basic Refactor
RKS13D Jan 23, 2026
5a99003
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
75ebb2c
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
db0afa8
Update trivialkart/trivialkart_unreal/Source/TrivialKart_Unreal/Priva…
RKS13D Jan 23, 2026
b0e24e6
Fixed Distance Calculation
RKS13D Jan 23, 2026
8b8d6c9
Added Events for UI Update
RKS13D Jan 23, 2026
f9f34c9
Added IAP Calls to purchase button and Purchase Callback as WeakLamda
RKS13D Jan 23, 2026
aaa6fe7
Added Virtual Keyword for missing functions
RKS13D Jan 23, 2026
db0d85b
License + Local Save + Cursor Enabled
RKS13D Jan 28, 2026
f10a131
Create README.md
RKS13D Jan 28, 2026
38f70a1
Console IDs for Achievements and IAP
RKS13D Jan 28, 2026
42d889f
Merge branch 'trivialkart-unreal' of https://github.com/RKS13D/games-…
RKS13D Jan 28, 2026
85fd16f
Removed Default Touch Interface
RKS13D Jan 29, 2026
494e41f
Added Default Achievement Name and Function Refactor
RKS13D Jan 29, 2026
bcd664c
SetUp DefaultEngine.ini to default values
RKS13D Jan 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions trivialkart/trivialkart_unreal/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# UE file types
*.uasset filter=lfs diff=lfs merge=lfs -text
*.umap filter=lfs diff=lfs merge=lfs -text

# Raw Content types
*.fbx filter=lfs diff=lfs merge=lfs -text
*.3ds filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.mp3 filter=lfs diff=lfs merge=lfs -text
*.wav filter=lfs diff=lfs merge=lfs -text
*.xcf filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.uexp filter=lfs diff=lfs merge=lfs -text
*.bank filter=lfs diff=lfs merge=lfs -text
*.tmp filter=lfs diff=lfs merge=lfs -text
*.vox filter=lfs diff=lfs merge=lfs -text

# Libraries and executables
*.a filter=lfs diff=lfs merge=lfs -text
*.lib filter=lfs diff=lfs merge=lfs -text
*.exe filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
76 changes: 76 additions & 0 deletions trivialkart/trivialkart_unreal/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
### UnrealEngine template
# Visual Studio 2015 user specific files
.vs/

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app
*.ipa

# These project files can be generated by the engine
*.xcodeproj
*.xcworkspace
*.sln
*.suo
*.opensdf
*.sdf
*.VC.db
*.VC.opendb

# Precompiled Assets
SourceArt/**/*.png
SourceArt/**/*.tga

# Binary Files
Binaries/*
Plugins/*/Binaries/*

# Builds
Build/*

# Whitelist PakBlacklist-<BuildConfiguration>.txt files
!Build/*/
Build/*/**
!Build/*/PakBlacklist*.txt

# Don't ignore icon files in Build
!Build/**/*.ico

# Built data for maps
*_BuiltData.uasset

# Configuration files generated by the Editor
Saved/*

# Compiled source files for the engine to use
Intermediate/*
Plugins/*/Intermediate/*

# Cache files for the editor to use
DerivedDataCache/*

Empty file.
Loading