Anton Petrov

Results 8 issues of Anton Petrov

### [REQUIRED] Please fill in the following fields: * Unity editor version: 2020.3.32f1 * Firebase Unity SDK version: 8.8.0 * Source you installed the SDK: .unitypackage * Problematic Firebase Component:...

type: feature request
api: crashlytics

The official guide recommends to set a flag when `CheckAndFixDependenciesAsync` completes to indicate that Firebase is ready. ``` Firebase.FirebaseApp.CheckAndFixDependenciesAsync().ContinueWith(task => { var dependencyStatus = task.Result; if (dependencyStatus == Firebase.DependencyStatus.Available) {...

type: feature request
api: analytics

Hi! From the documentation: ``` public bool IsVisible(int index); Note that this method uses the most recently computed visibility states. Visibility is updated immediately before rendering, so using this method...

**Problem description** Currently when you collapse the file list buttons are hidden: **Preferred solution** Do not hide the buttons. **Alternatives** A description of any alternative solutions or enhancements considered. **Screenshots**...

This simple example does not work as expected. While `Bar`'s constructor is called the `Tick()` method is never called. ``` using UnityEngine; using Zenject; public class SceneInstaller : MonoInstaller {...

Hi! I was resolving an issue that while `AddAplicationInsightsLoggerProvider()` sets the default [filter](https://docs.microsoft.com/en-us/dotnet/core/extensions/logging?tabs=command-line#how-filtering-rules-are-applied) rule to `LogLevel.Warning` ([here](https://github.com/microsoft/ApplicationInsights-dotnet/blob/ed0015a78a53b3a26e04d18eed442581bc7c571f/NETCORE/src/Shared/Extensions/ApplicationInsightsExtensions.cs#L426)) in the end it was ignored. I used Serilog with `UseSerilog()` and `writeToProviders:...

Hi! I am creating an assembly with grains: `MyProject.Grains` and according to the documentation (see [Migration Guide](https://learn.microsoft.com/en-us/dotnet/orleans/migration-guide), [Tutorial](https://learn.microsoft.com/en-us/dotnet/orleans/tutorials-and-samples/tutorial-1)) I am referenceing only `Microsoft.Orleans.Sdk`. But `PersistentState` and `IPersistentState` force me to...

**Problem description** Consider I want to switch branches and then pull latest changes. I do it in two operations: 1. Switch branch 2. Pull latest changes In a large repository...