From 4c9c50582a6ae713114eef8a4089976d111c6afc Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Wed, 22 Jan 2020 16:30:14 +0000 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 952a3014e..8a0e74b8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,13 @@ ### New Features * `Line.GetEasedPoints` is a new function that will take a Line, a quantity, and an ease function, and returns an array of points where each point has been spaced out across the length of the Line based on the ease function given. +* `XHRSettings.withCredentials` is a new boolean property that controls the `withCredentials` setting of the XHR Request made by the Loader. It indicates whether or not cross-site Access-Control requests should be made using credentials such as cookies, authorization headers or TLS client certificates. You can set this on a per-file basis, or global in the Game Config. +* `Config.loaderWithCredentials` is the new global setting for `XHRSettings.withCredentials`. ### Updates +* `XHRLoader` will now use the `XHRSettings.withCredentials` as set in the file or global loader config. + ### Bug Fixes * The conditional checking if the `PathFollower` was at the end of the path or not was incorrect (thanks @samme)