Status
SteamPeaks
ChartsSalesUpcomingPatchesNewsCalculator
New on SteamEvery app, DLC and depot the minute Steam creates itAppsEvery app on Steam, newest change firstPackagesSubs and bundles, and what each containsDepotsDepots, manifests and install sizesTagsSteam's user tags and the games under themDevelopers & publishersCompanies and their cataloguesTechnologiesEngines, SDKs and anti-cheat found in the filesChange historyEvery PICS changelist as it lands
SignalsNineteen readings of the whole catalogueCompareAny games side by sideRecordsAll-time peaks and the days they were setReportsWeekly and monthly write-upsAlerts & newsroomWatch a game, get told when it movesSteam statusIs Steam up, right nowWeb API explorerTry the endpoints in the browser
NewsSteam's own announcements and the sales calendarCalculatorWhat a Steam account is worth, and its pile of shame
/
Sign in
/
SteamPeaks
The ultimate resource for Steam data.
ExploreChartsSalesSales and festsUpcomingPatchesNewsRecordsTrendingSignals
DatabaseAppsPackagesDepotsTagsDevelopersTechnologiesChange history
ToolsCalculatorCompareSearchAlertsSteam statusAPI
SiteMethodologyFAQDiscordSupportSign in via Steam
Not affiliated with Valve or Steam. Game names and artwork belong to their owners. All times UTC.
PrivacyCookiesFair useStatus
AppGameKit Classic: Easy Game DevelopmentNewsAppGameKit Classic 2022.06.28 update released!
In-game event

AppGameKit Classic 2022.06.28 update released!

AppGameKit Classic: Easy Game Development · published 28 Jun 2022, 09:35 UTC

All newsPlayers around this dateRead on Steam

Welcome to the quarterly update for AppGameKit Classic. This update focuses on a host of NEW commands!

Noise Generator Commands


We've added some new noise generator commands. These are useful for things like procedural textures and generating height maps:

  • SetupNoise - Initialises Open Simplex noise generation
  • GetNoiseX - Returns 1D noise value
  • GetNoiseXY - Returns 2D noise values
  • GetNoiseXYZ - Returns 3D noise values
  • GetFractalX - Returns Fractal/Fractional Brownian Motion 1D noise value
  • GetFractalXY - Returns Fractal/Fractional Brownian Motion 2D noise values
  • GetFractalXYZ - Returns Fractal/Fractional Brownian Motion 3D noise values

Sprite Physics


The sprite physic commands have been expanded, providing extra control. You can now set properties such as the gravity scaling and whether a sprite can sleep or not, this lets you take control instead of AppGameKit making all the choices:

  • SetSpritePhysicsGravityScale - Gravity scaling
  • SetSpritePhysicsInitiallyAwake - Set if the sprite is initially awake or set
  • SetSpritePhysicsAllowSleep - Allows a sprite to sleep
  • GetSpritePhysicsGravityScale - Returns the gravity scaling value
  • GetSpritePhysicsInertia - Returns the current inertia value
  • GetSpritePhysicsIsBullet - Returns true if the sprite is set as a bullet
  • GetSpritePhysicsIsAwake - Returns true if the sprite is awake

Tweening


New tweening commands provide more information to you about the tweening system. For example, you now have the ability to discover the current time for a tween and its duration. You can also clear all tweens for a sprite, text etc. This resets the state of those tweens, allowing you to clear all tweens with one command prior to adding new tweens for your sprites:

  • ClearTweenSprite - Clears all tweens for the sprite
  • ClearTweenCustom - Clears all tweens for the custom tween
  • ClearTweenText - Clears all tweens for the text
  • ClearTweenChar - Clears all tweens for the char
  • ClearTweenObject - Clears all tweens for the object
  • GetTweenSpriteTime - Get the current time for a sprite
  • GetTweenSpriteEndTime - Get the end time for a sprite tween
  • GetTweenCustomTime - Get the current custom time
  • GetTweenCustomEndTime - Get the end time for a custom tween
  • GetTweenTextTime - Get the current text time
  • GetTweenTextEndTime - Get the end time for a text tween
  • GetTweenCharTime - Get the current char time
  • GetTweenCharEndTime - Get the end time for a char tween
  • GetTweenObjectTime - Get the current object time
  • GetTweenObjectEndTime - Get the end time for an object tween

Bug fixing


Fixed a crash when using the Spaces command when the length specified was negative

More from AppGameKit Classic: Easy Game Development

Other announcements

All news
Community24 Apr 2024AppGameKit Classic to be retiredOver ten years ago we created a programming tool called AppGameKit Classic to help make apps and games for Windows, Mac, iOS and Android - using a cross-platform easy-to-use language. Along the way, we have seen some amazing creations, including a few of our own that reached the No.1 spot on both Apple and Google stores. Our most recent success story has been the Driving Test Success 4in1 Theor…In-game event26 Jan 2023AppGameKit Classic 2023.01.26 update released!Welcome to a new update for AppGameKit Classic. This small update includes these few changes: · Fixed Android export using the AGK adaptive icon if only a legacy icon was supplied · Added support for BMP image files · Added GetInAppPurchaseIsRenewing to return subscription renewal state on AndroidIn-game event20 Dec 2022AppGameKit Classic 2022.12.13 update released!Welcome to the quarterly update for AppGameKit Classic. This update focuses on a range of important bug fixes. Bug Fixes · Fixed Alt key combinations causing a system sound on Windows · Fixed InAppPurchaseSetup failing unless both a normal and subscription product are added · Fixed text shaders not receiving shader constant updates · Fixed IndexOf when used on arrays of types · Fixed text not r…